useclap::Args;useclap::Subcommand;/// Arguments for the `auth` subcommand.
#[derive(Debug, Args)]pubstructAuthArgs{#[command(subcommand)]pubcommand: AuthCommands,
}#[derive(Debug, Subcommand)]pubenumAuthCommands{/// Test that authentication is working.
Test,/// Print instructions for setting up authentication.
Setup,}