Open source Nest implementation
use rocket::form::Context;
use rocket::Route;
use rocket_dyn_templates::Template;

#[get("/", rank = 2)]
fn landing() -> Template {
    Template::render("landing", &Context::default())
}

pub fn routes() -> Vec<Route> {
    routes![landing]
}