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 format;
11pub mod interactive;
12pub mod plugin;
13pub mod session;
14
15pub use channel::{CliChannel, CliChannelHandle};
16pub use commands::MetaCommand;
17pub use format::CliFormatter;
18pub use interactive::InteractiveLoop;
19pub use plugin::CliPlugin;
20pub use session::Session;