generated from alecodes/base-template
8 lines
198 B
Rust
8 lines
198 B
Rust
fn main() {
|
|
// we only need to bundle the templates with the
|
|
// feature is enabled.
|
|
#[cfg(feature = "bundled")]
|
|
{
|
|
minijinja_embed::embed_templates!("src/templates");
|
|
}
|
|
}
|