Files
yaak-mountain-loop/src-tauri/templates/src/lib.rs
Gregory Schier 372588f541 Templating (#43)
Add new `templating` crate with custom parser/renderer for dealing with
variables
2024-06-07 08:39:12 -07:00

8 lines
101 B
Rust

pub mod parser;
pub mod renderer;
pub use parser::*;
pub use renderer::*;
pub fn template_foo() {}