Skip to main content

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 mod auth;
7pub mod config;
8pub mod drives;
9pub mod files;
10pub mod init;
11pub mod sites;