katana-render-runtime-cli 0.3.1

CLI front-end for katana-render-runtime: render, reference-update, compare, bench.
mod commands;
mod diagram_cmd;
mod diagram_source;
mod file_ops;
mod reference_cmd;
mod system;

use clap::Parser;
use commands::{Cli, Commands};
use diagram_cmd::DiagramCommand;
use katana_render_runtime::DiagramKind;

fn main() -> anyhow::Result<()> {
    match Cli::parse().command {
        Commands::Mermaid { action } => DiagramCommand::new(DiagramKind::Mermaid).run(action),
        Commands::Drawio { action } => DiagramCommand::new(DiagramKind::Drawio).run(action),
        Commands::Plantuml { action } => DiagramCommand::new(DiagramKind::PlantUml).run(action),
    }
}