sharepoint-cli 0.0.8

Agent-friendly SharePoint Online CLI with JSON output, structured exit codes, and schema introspection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Command implementations dispatched from `cli.rs`.
//!
//! Each subcommand lives in its own file so we can grow the surface without
//! `cli.rs` ballooning.

pub(crate) mod auth;
pub(crate) mod config;
pub(crate) mod drives;
pub(crate) mod files;
pub(crate) mod init;
pub(crate) mod schema;
pub(crate) mod sites;