Files
stoatchat/src/routes/mod.rs
Paul Makles 56631f99b2 no
2020-01-19 14:22:52 +00:00

9 lines
154 B
Rust

use rocket::Rocket;
mod account;
pub fn mount(rocket: Rocket) -> Rocket {
rocket
.mount("/api/account", routes![ account::root, account::create ])
}