You've already forked AstralRinth
forked from didirus/AstralRinth
9 lines
274 B
Rust
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));
|
|
}
|