ac_qu_ai_nt_cli_clap/
lib.rs1use clap::{Parser, Subcommand};
2
3#[derive(Debug, Subcommand)]
4enum Command {}
5
6#[derive(Debug, Parser)]
7pub struct Args {
8 #[command(subcommand)]
9 command: Command,
10}
11
12pub fn main(_args: Args) {
13 #[cfg(feature = "tracing")]
14 tracing::info!("What's up, world?");
15}