feat(server): add say alias to announce

This commit is contained in:
Anna 2024-04-04 14:53:33 -04:00
parent f915e5d51f
commit 4483b380d8
Signed by: anna
GPG Key ID: D0943384CD9F87D1
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ async fn main() -> Result<()> {
quit_tx.blocking_send(()).ok();
return;
}
"announce" => {
"announce" | "say" => {
if command.len() == 2 {
let msg = command[1].to_string();
announce_tx.blocking_send(msg).ok();