15 lines
344 B
Rust
15 lines
344 B
Rust
#[derive(Debug, Clone, clap::Args)]
|
|
#[command(rename_all = "camelCase")]
|
|
pub struct PsychonautSubcommand {
|
|
#[command(subcommand)]
|
|
pub subcommand: PsychonautSubcommands,
|
|
}
|
|
|
|
#[derive(Debug, Clone, clap::Subcommand)]
|
|
#[command(rename_all = "camelCase")]
|
|
pub enum PsychonautSubcommands {
|
|
Import(import::PsychonautImportArgs),
|
|
}
|
|
|
|
pub mod import;
|