Invite bot to server / group for #8.

This commit is contained in:
Paul
2021-08-12 09:24:06 +01:00
parent 93610ebbc3
commit 9f749cfdf8
7 changed files with 127 additions and 51 deletions

View File

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