aether_cli/agent/mod.rs
1mod new;
2
3use std::path::PathBuf;
4
5#[derive(clap::Subcommand)]
6pub enum AgentCommand {
7 /// Create a new agent
8 New(NewArgs),
9}
10
11#[derive(clap::Args)]
12pub struct NewArgs {
13 /// Directory to initialize (defaults to current directory)
14 #[arg(default_value = ".")]
15 pub path: PathBuf,
16}
17
18pub use new::run_new;