echoes/backend/src/routes/mod.rs

6 lines
105 B
Rust
Raw Normal View History

mod intsall;
use rocket::routes;
pub fn create_routes() -> routes {
routes!["/", intsall::install]
}