Skip to main content

oxios_cli/
lib.rs

1//! Interactive CLI channel for Oxios.
2//!
3//! Provides an interactive terminal interface that plugs into the
4//! gateway via the [`Channel`](oxios_gateway::Channel) trait.
5
6#![warn(missing_docs)]
7
8pub mod channel;
9pub mod commands;
10pub mod interactive;
11pub mod plugin;
12pub mod session;
13
14pub use channel::{CliChannel, CliChannelHandle};
15pub use commands::MetaCommand;
16pub use interactive::InteractiveLoop;
17pub use plugin::CliPlugin;
18pub use session::Session;