Add role hoisting / ranking.

Add bot creation for #8.
This commit is contained in:
Paul
2021-08-11 20:04:22 +01:00
parent e70f848f21
commit 084d71f050
18 changed files with 282 additions and 29 deletions

9
src/routes/bots/mod.rs Normal file
View File

@@ -0,0 +1,9 @@
use rocket::Route;
mod create;
pub fn routes() -> Vec<Route> {
routes![
create::create_bot
]
}