Skip to main content

ac_qu_ai_nt_cli_clap/
lib.rs

1use 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}