1 2 3 4 5 6 7 8 9 10 11
//! Command implementations dispatched from `cli.rs`. //! //! Each subcommand lives in its own file so we can grow the surface without //! `cli.rs` ballooning. pub mod auth; pub mod config; pub mod drives; pub mod files; pub mod init; pub mod sites;