use clap::{Args, Subcommand};
#[derive(Debug, Args)]
pub struct Make {
#[command(subcommand)]
pub command: Commands,
}
#[derive(Subcommand, Debug)]
pub enum Commands {
Route(Route),
Migrate,
}
#[derive(Args, Debug)]
pub struct Route {
name: String,
}