diff --git a/src/gateway/mod.rs b/src/gateway/mod.rs index f0ece27..f946953 100644 --- a/src/gateway/mod.rs +++ b/src/gateway/mod.rs @@ -1,4 +1,3 @@ -mod reset; mod restart; mod status; mod update; @@ -18,8 +17,6 @@ pub enum Commands { Update(UpdateOptions), /// Restart a gateway Restart, - /// Reset a gateway to default configuration - Reset, } #[derive(Parser)] @@ -45,7 +42,6 @@ impl Cmd { update::command(output, options, self.ip).await } Commands::Restart => restart::command(output, ctx).await, - Commands::Reset => reset::command(output).await, } } } diff --git a/src/gateway/reset.rs b/src/gateway/reset.rs deleted file mode 100644 index d7f94cb..0000000 --- a/src/gateway/reset.rs +++ /dev/null @@ -1,4 +0,0 @@ -#[allow(unused_variables, unused_mut)] -pub async fn command(mut output: impl std::io::Write) -> anyhow::Result<()> { - unimplemented!(); -}