Add bot edit route for #8.

This commit is contained in:
Paul
2021-08-12 14:05:48 +01:00
parent a71bfa908c
commit bd3606176a
3 changed files with 126 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ mod invite;
mod fetch_public;
mod fetch;
mod fetch_owned;
mod edit;
pub fn routes() -> Vec<Route> {
routes![
@@ -13,5 +14,6 @@ pub fn routes() -> Vec<Route> {
fetch_public::fetch_public_bot,
fetch::fetch_bot,
fetch_owned::fetch_owned_bots,
edit::edit_bot,
]
}