Archived
1
0
Fork 0
This repository has been archived on 2024-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
migra/migra-cli/src/main.rs

21 lines
269 B
Rust
Raw Normal View History

2021-01-31 02:38:35 +03:00
#![deny(clippy::all)]
use structopt::StructOpt;
#[derive(Debug, StructOpt)]
enum AppOpt {
Init,
}
fn main() {
let opt = AppOpt::from_args();
dbg!(&opt);
match opt {
AppOpt::Init => {
println!("unimplemented");
}
}
}