mirror of
https://codeberg.org/waydeer/layer-shika.git
synced 2025-12-12 14:25:54 +00:00
9 lines
213 B
Rust
9 lines
213 B
Rust
use crate::errors::DomainError;
|
|
|
|
pub trait ShellSystemPort {
|
|
fn run(&mut self) -> Result<(), DomainError>;
|
|
}
|
|
|
|
pub trait ShellContextPort {
|
|
fn render_frame_if_dirty(&mut self) -> Result<(), DomainError>;
|
|
}
|