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

17 lines
229 B
Rust
Raw Normal View History

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