mylloon.fr/src/routes/index.rs

9 lines
176 B
Rust
Raw Normal View History

2023-02-08 20:49:05 +01:00
use crate::template::get_index;
use actix_web::{get, HttpResponse, Responder};
#[get("/")]
pub async fn page() -> impl Responder {
HttpResponse::Ok().body(get_index())
}