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