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