Krys4lide/crates/app/src/templates/hello.rs

8 lines
127 B
Rust

use askama::Template;
#[derive(Template)]
#[template(path = "hello.html")]
pub struct HelloResponse {
pub name: String,
}