Add clap version, authors; Update metadata.

This commit is contained in:
Olivia Brooks
2026-01-26 22:21:10 -05:00
parent dafc6ea885
commit aa851f7616
2 changed files with 12 additions and 6 deletions

View File

@@ -5,6 +5,8 @@ use clap::{ArgAction, Parser, Subcommand};
pub static CONFIG: LazyLock<Args> = LazyLock::new(|| Args::parse());
#[derive(Debug, Parser)]
#[clap(author, version)]
#[command(help_template = "{author-section}\n{usage-heading} {usage}\n\n{all-args}")]
pub struct Args {
#[command(subcommand)]
pub command: Command,