mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 05:26:59 +00:00
12 lines
154 B
Rust
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
|
|
]
|
|
}
|