use structopt::StructOpt;
pub mod execute;
pub mod new;
pub mod pack;
pub mod serve;
#[derive(Debug, StructOpt)]
#[structopt(name = "skrd")]
pub enum Command {
#[structopt(name = "new")]
New(new::New),
#[structopt(name = "serve")]
Serve(serve::Serve),
#[structopt(name = "pack")]
Pack(pack::Pack),
#[structopt(name = "exec")]
Execute(execute::Execute),
}