use rocket::Route; pub mod user; pub fn routes() -> Vec { let mut ret = Vec::new(); ret.append(&mut user::routes()); ret }