forked from jmug/stoatchat
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]
|
|
}
|