Remove App implementation: delete TUI application logic, event handling, and related structures.

This commit is contained in:
2025-09-30 02:40:20 +02:00
parent a5727c0a1d
commit 54bcabd53d
12 changed files with 450 additions and 3299 deletions

View File

@@ -12,6 +12,8 @@ pub mod provider;
pub mod router;
pub mod session;
pub mod types;
pub mod ui;
pub mod wrap_cursor;
pub use config::*;
pub use conversation::*;
@@ -21,7 +23,6 @@ pub use model::*;
pub use provider::*;
pub use router::*;
pub use session::*;
pub mod wrap_cursor;
/// Result type used throughout the OWLEN ecosystem
pub type Result<T> = std::result::Result<T, Error>;