aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2025-09-13 00:20:42 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2025-09-13 00:20:42 +0530
commit330328d5ac6c633f117127b64b239631ca28277e (patch)
tree31be37cfcbc28cf15772c74e69f9bad959747890 /src/main.rs
parenta85293cb7e755d5b81676088db205388488763a7 (diff)
Added notificationsv0.2.0
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index d3e27f0..46d018e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -54,7 +54,7 @@ fn main() {
if args.len() == 2 {
match args[1].as_str() {
- "run" | "pause" | "toggle" | "skip" | "soft-reset" | "hard-reset" | "reset" => client::command::handle_command(args[1].clone()),
+ "run" | "pause" | "toggle" | "skip" | "soft-reset" | "hard-reset" | "reset" | "notify" => client::command::handle_command(args[1].clone()),
"-d" => daemon::start_daemon(),
"-l" => client::listener::start_listener(),
"-h" | _ => { print_usage(); },