//! New command implementation
use anyhow::Result;
use clap::Parser;
#[derive(Parser, Debug)]
pub struct NewCommand {
/// Name of the new project
pub name: String,
}
impl NewCommand {
pub async fn run(&self) -> Result<()> {
println!("Creating new project: {}", self.name);
Ok(())
}
}