feat(nsconfig): basic config and basic integration in service
This commit is contained in:
@@ -8,6 +8,6 @@ pub fn create() -> Command {
|
||||
Command::new("push").about("Push changes on nextcloud")
|
||||
}
|
||||
|
||||
pub fn handler(args: &ArgMatches) {
|
||||
pub fn handler(_args: &ArgMatches) {
|
||||
commands::push::exec(PushArgs {}, Config::new());
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ pub fn create() -> Command {
|
||||
.about("Clear the index")
|
||||
}
|
||||
|
||||
pub fn handler(args: &ArgMatches) {
|
||||
pub fn handler(_args: &ArgMatches) {
|
||||
commands::reset::exec(
|
||||
ResetArgs {},
|
||||
Config::new(),
|
||||
|
||||
Reference in New Issue
Block a user