- Added SessionSummary struct for session metadata. - Updated ws_handler to create and manage CLI sessions more robustly. - Implemented session creation, loading, renaming, archiving, and deletion via WebSocket messages. - Introduced SessionStore for persistent session storage using SQLite. - Enhanced error handling and logging for session operations. - Updated protocol definitions for new session-related WebSocket messages. - Refactored tests to cover new session functionalities and ensure proper serialization.
14 lines
217 B
Rust
14 lines
217 B
Rust
pub mod config;
|
|
pub mod providers;
|
|
pub mod bus;
|
|
pub mod cli;
|
|
pub mod agent;
|
|
pub mod gateway;
|
|
pub mod client;
|
|
pub mod protocol;
|
|
pub mod channels;
|
|
pub mod logging;
|
|
pub mod observability;
|
|
pub mod storage;
|
|
pub mod tools;
|