Skip to main content

glass/cli/
mod.rs

1//! CLI argument parsing and command dispatch.
2//!
3//! Defines the top-level CLI struct (via clap) and the runner module that
4//! orchestrates one-shot commands, TUI mode, and MCP server startup.
5
6pub mod args;
7pub mod runner;