Skip to main content

talon_cli/cli/
init_args.rs

1//! Arguments for `talon init`.
2
3use clap::Args;
4
5/// Arguments for the `init` subcommand.
6#[derive(Debug, Clone, Args)]
7#[command(about = "Initialize a new talon configuration file.")]
8pub struct InitArgs {}