EVP2FSBHQUCAXQ6IIMBD6IS24ODKHP6HFWYCHIMYG6KOFRQG3RVQC pub mod index;
use actix_web::{web, HttpResponse};use handlebars::Handlebars;pub async fn index(hb: web::Data<Handlebars<'_>>) -> HttpResponse {let body = hb.render("index", &()).expect("render index");HttpResponse::Ok().body(body)}