Files
stoatchat/src/routes/users/mod.rs
2020-12-29 13:02:04 +00:00

12 lines
154 B
Rust

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