airsprotocols_mcpserver_filesystem/cli/
mod.rs

1//! CLI module for AIRS MCP-FS
2//!
3//! Provides command-line interface coordination and routing for the MCP filesystem server.
4//! This module serves as the main CLI coordinator, handling argument parsing, logging setup,
5//! and routing commands to appropriate handlers.
6
7// Layer 1: Standard library imports
8// (None needed for pure module coordinator)
9
10// Layer 2: Third-party crate imports
11// (None needed for pure module coordinator)
12
13// Layer 3: Internal module declarations
14pub mod args;
15pub mod coordinator;
16pub mod handlers;
17pub mod logging;
18
19// Public API re-exports
20pub use args::{Cli, Commands};
21pub use coordinator::run;