1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! `schema` subcommand use abscissa_core::{Command, Runnable}; use clap::Parser; /// Prints the json schema for config files. #[derive(Command, Debug, Parser)] pub struct SchemaCmd {} impl Runnable for SchemaCmd { /// Start the application. fn run(&self) { todo!("print schema.") } }