mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 13:36:59 +00:00
9 lines
119 B
Rust
9 lines
119 B
Rust
use rocket::Route;
|
|
|
|
mod complete;
|
|
mod hello;
|
|
|
|
pub fn routes() -> Vec<Route> {
|
|
routes![hello::req, complete::req]
|
|
}
|