mirror of
https://github.com/askama-rs/askama.git
synced 2025-10-02 15:25:19 +00:00
9 lines
121 B
Rust
9 lines
121 B
Rust
use askama::Template;
|
|
|
|
#[derive(Template)]
|
|
#[template(path = "thisdoesnotexist.html")]
|
|
struct MyTemplate;
|
|
|
|
fn main() {
|
|
}
|