adrscope 0.3.0

A lightweight, zero-dependency visualization tool for Architecture Decision Records
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Command-line interface layer.
//!
//! This module handles argument parsing and command dispatch using clap.

mod args;
mod handlers;

pub use args::{
    Cli, Commands, FormatArg, GenerateArgs, StatsArgs, ThemeArg, ValidateArgs, WikiArgs,
};
pub use handlers::run;