echoes/backend/src/routes/mod.rs

11 lines
150 B
Rust
Raw Normal View History

pub mod intsall;
pub mod person;
use rocket::routes;
pub fn create_routes() -> Vec<rocket::Route> {
routes![
intsall::install,
]
}