1 2 3 4 5 6 7 8 9 10
//! CLI commands. //! //! Each command module should contain: //! - An `Args` struct deriving `clap::Args` //! - A `run(args, config) -> anyhow::Result<()>` function pub mod app; pub mod app_status; pub mod deploy; pub mod login;