Add stat command

This commit is contained in:
UltraDesu
2020-12-07 17:51:39 +03:00
parent 60d1ccda17
commit 895399be25
3 changed files with 1 additions and 0 deletions

BIN
mystem Executable file

Binary file not shown.

Binary file not shown.

View File

@ -27,6 +27,7 @@ async fn handler(api: Api, message: Message, token: String) -> Result<(), errors
match data.as_str() { match data.as_str() {
"/here" => commands::here(api, message).await?, "/here" => commands::here(api, message).await?,
"/top" => commands::top(api, message).await?, "/top" => commands::top(api, message).await?,
"/stat" => commands::top(api, message).await?,
_ => (), _ => (),
} }
} }