refactor: bring in the modules
Signed-off-by: Gunwant Jain <mail@wantguns.dev>
This commit is contained in:
10
src/routes/index.rs
Normal file
10
src/routes/index.rs
Normal file
@@ -0,0 +1,10 @@
|
||||
use rocket_dyn_templates::Template;
|
||||
|
||||
use std::collections::HashMap;
|
||||
|
||||
#[get("/")]
|
||||
pub async fn index() -> Option<Template> {
|
||||
let mut map = HashMap::new();
|
||||
map.insert("title", "bin");
|
||||
Some(Template::render("index", &map))
|
||||
}
|
||||
Reference in New Issue
Block a user