use crate::template::get_index; use actix_web::{get, HttpResponse, Responder}; #[get("/")] pub async fn page() -> impl Responder { HttpResponse::Ok().body(get_index()) }