Add markov chain sentence generator.

This commit is contained in:
AB
2020-12-08 12:31:21 +03:00
parent d457e8af58
commit 2a8dcc8ffb
5 changed files with 142 additions and 13 deletions

View File

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