shorten TuiIn, TuiOut

This commit is contained in:
🪞👃🪞 2024-12-31 23:42:35 +01:00
parent ca16a91015
commit 21741ebc52
20 changed files with 77 additions and 75 deletions

View file

@ -68,7 +68,7 @@ pub type Perhaps<T> = Result<Option<T>, Box<dyn Error>>;
}
}
impl Handle<Tui> for TestComponent {
fn handle (&mut self, from: &TuiInput) -> Perhaps<bool> {
fn handle (&mut self, from: &TuiIn) -> Perhaps<bool> {
Ok(None)
}
}