Skip to content

Commit

Permalink
remove unimplemented reset option
Browse files Browse the repository at this point in the history
  • Loading branch information
liamkinne committed Jul 18, 2024
1 parent 4eec45f commit b1b9709
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions src/gateway/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
mod reset;
mod restart;
mod status;
mod update;
Expand All @@ -18,8 +17,6 @@ pub enum Commands {
Update(UpdateOptions),
/// Restart a gateway
Restart,
/// Reset a gateway to default configuration
Reset,
}

#[derive(Parser)]
Expand All @@ -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,
}
}
}
Expand Down
4 changes: 0 additions & 4 deletions src/gateway/reset.rs

This file was deleted.

0 comments on commit b1b9709

Please sign in to comment.