fll-scoring 0.1.0

Set of core utilities for the FLL-Scoring project
Documentation
use handlebars::{Handlebars, Registry};

pub fn init_handlebars() -> Result<Registry, String> {
    let mut handlebars = Handlebars::new();
    handlebars.register_templates_directory(".html", "./static/templates")?;

    Ok(handlebars.clone())

}