1 2 3 4 5 6 7
pub mod dto; mod client; mod error; pub use client::Client; pub use dto::{History, Prompt, Queue, SystemStats}; pub use error::{Error, Result};