Archived
1
0
Fork 0

chore: use panic instead eprint

This commit is contained in:
Dmitriy Pleshevskiy 2021-06-07 00:41:50 +03:00
parent 261e6fdbc6
commit 6381c99727

View file

@ -27,6 +27,6 @@ fn main() {
dotenv::dotenv().ok();
if let Err(err) = App::new(AppOpt::from_args()).run_command() {
eprintln!("Error: {}", err);
panic!("Error: {}", err);
}
}