e0/bin/e0pkg.rs

19 lines
280 B
Rust
Raw Normal View History

2022-07-18 08:21:39 +00:00
use clap::{Parser, Subcommand};
#[derive(Debug, Parser)]
struct Opt {
#[clap(subcommand)]
command: Command,
}
#[derive(Debug, Subcommand)]
enum Command {
/// Compile an e0 package
#[clap(name = "build", alias = "b")]
Build,
}
fn main() {
let opts = Opt::parse();
}