feat: implemented toggle-loop

This commit is contained in:
2026-01-02 04:39:48 +03:00
parent 023caa4616
commit 6c06da7b0d
4 changed files with 19 additions and 0 deletions
+1
View File
@@ -58,6 +58,7 @@ pub fn parse_command(request: &Request) -> Option<Box<dyn Executable + Send>> {
.ok();
Some(Box::new(SetLoopCommand { enabled }))
}
"toggle_loop" => Some(Box::new(ToggleLoopCommand {})),
_ => None,
}
}