rename output cli to arg

This commit is contained in:
Clément DOUIN
2021-09-18 00:32:46 +02:00
parent 94e9711c58
commit e41a71648c
4 changed files with 5 additions and 50 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ use himalaya::{
msg,
smtp::service::SmtpService,
},
output::{cli::output_args, service::OutputService},
output::{self, service::OutputService},
};
fn create_app<'a>() -> clap::App<'a, 'a> {
@@ -24,7 +24,7 @@ fn create_app<'a>() -> clap::App<'a, 'a> {
.version(env!("CARGO_PKG_VERSION"))
.about(env!("CARGO_PKG_DESCRIPTION"))
.author(env!("CARGO_PKG_AUTHORS"))
.args(&output_args())
.args(&output::arg::args())
.args(&config::arg::args())
.arg(mbox::arg::source_arg())
.subcommands(compl::arg::subcmds())