schemaui-cli 0.4.0

CLI wrapper for schemaui, rendering JSON Schemas as TUIs
Documentation
#![doc = include_str!("../cli_usage.md")]

use clap::Parser;
use color_eyre::eyre::Result;

use schemaui_cli::cli::{Cli, Commands};
use schemaui_cli::tui;

#[cfg(feature = "web")]
use schemaui_cli::web;

fn main() -> Result<()> {
    color_eyre::install()?;
    let cli = Cli::parse();

    match cli.command {
        Some(Commands::Tui(args)) => tui::run_cli(&args.common),
        None => tui::run_cli(&cli.common),
        Some(Commands::TuiSnapshot(args)) => tui::run_snapshot_cli(args),
        #[cfg(feature = "web")]
        Some(Commands::Web(args)) => web::run_cli(args),
        #[cfg(feature = "web")]
        Some(Commands::WebSnapshot(args)) => web::run_snapshot_cli(args),
    }
}