Krys4lide/crates/app/src/pages/home.rs

11 lines
212 B
Rust
Raw Normal View History

use askama::Template;
use askama_axum::IntoResponse;
#[derive(Template)]
#[template(path = "pages/home.html")]
struct HomeResponse;
pub async fn home() -> impl IntoResponse {
HomeResponse.into_response()
2024-08-08 15:01:28 +02:00
}