1 2 3 4 5 6 7 8 9 10 11
//! Operator CLI command implementations. //! //! Each module corresponds to a top-level subcommand that an operator runs //! (e.g. `quelch status`, `quelch reset`, `quelch query`). pub mod get; pub mod instance; pub mod query; pub mod reset; pub mod search; pub mod status;