Files
stoatchat/src/routes/mod.rs
2020-01-25 10:26:56 +00:00

9 lines
177 B
Rust

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