New perm concept, reference, and adding routes.

This commit is contained in:
Paul Makles
2020-12-29 13:02:04 +00:00
parent 798047625a
commit eb382fa1ec
14 changed files with 196 additions and 46 deletions

View File

@@ -1,9 +1,11 @@
use rocket::Route;
mod fetch_user;
mod fetch_dms;
pub fn routes() -> Vec<Route> {
routes! [
fetch_user::req
fetch_user::req,
fetch_dms::req
]
}