10 lines
211 B
Rust
10 lines
211 B
Rust
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()
|
|
} |