Files
AstralRinth/src/helpers/mod.rs
2020-06-22 21:04:17 -07:00

9 lines
274 B
Rust

mod contains;
mod format_human;
use handlebars::*;
pub fn register_helpers(handlebars: &mut Handlebars) {
handlebars.register_helper("contains", Box::new(contains::ContainsHelper));
handlebars.register_helper("format", Box::new(format_human::HumanFormatHelper));
}