summaryrefslogtreecommitdiff
path: root/vigilctl/src
diff options
context:
space:
mode:
Diffstat (limited to 'vigilctl/src')
-rw-r--r--vigilctl/src/main.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/vigilctl/src/main.rs b/vigilctl/src/main.rs
index 08ff37c..9dd9dce 100644
--- a/vigilctl/src/main.rs
+++ b/vigilctl/src/main.rs
@@ -1,6 +1,6 @@
use clap::{Parser, Subcommand};
-#[derive(Subcommand, Clone,Debug)]
+#[derive(Subcommand, Clone, Debug)]
enum Command {
/// Check Service Status
Status { of: String },
@@ -15,7 +15,7 @@ enum Command {
Disable { service: String },
/// Power Management Commands
#[command(subcommand)]
- Power(PowerCommand)
+ Power(PowerCommand),
}
#[derive(Subcommand, Clone, Debug)]
enum PowerCommand {
@@ -24,7 +24,7 @@ enum PowerCommand {
/// Poweroff System
Poweroff,
/// Halt
- Halt
+ Halt,
}
#[derive(Parser)]
#[command(name = "vigilctl")]