mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-08-31 02:22:29 +00:00
9 lines
177 B
Rust
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 ])
|
|
}
|