mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-08-25 14:53:34 +00:00
15 lines
409 B
Rust
15 lines
409 B
Rust
//! Multi-channel input system.
|
|
//!
|
|
//! Channels receive messages from external sources (CLI, HTTP, etc.)
|
|
//! and convert them to a unified message format for the agent to process.
|
|
|
|
mod channel;
|
|
pub mod cli;
|
|
mod http;
|
|
mod manager;
|
|
|
|
pub use channel::{Channel, IncomingMessage, MessageStream, OutgoingResponse, StatusUpdate};
|
|
pub use cli::TuiChannel;
|
|
pub use http::HttpChannel;
|
|
pub use manager::ChannelManager;
|