mirror of
https://github.com/babichjacob/ac-qu-ai-nt.git
synced 2025-10-02 04:47:53 -04:00
16 lines
291 B
Rust
16 lines
291 B
Rust
use clap::{Parser, Subcommand};
|
|
|
|
#[derive(Debug, Subcommand)]
|
|
enum Command {}
|
|
|
|
#[derive(Debug, Parser)]
|
|
pub struct Args {
|
|
#[command(subcommand)]
|
|
command: Command,
|
|
}
|
|
|
|
pub fn main(_args: Args) {
|
|
#[cfg(feature = "tracing")]
|
|
tracing::info!("What's up, world?");
|
|
}
|