use handlebars::Handlebars; use once_cell::sync::Lazy; pub static REGISTRY: Lazy = Lazy::new(|| { let mut handlebars = Handlebars::new(); handlebars .register_template_string("index", include_str!("index.hbs")) .unwrap(); handlebars .register_template_string("login", include_str!("login.hbs")) .unwrap(); handlebars .register_template_string("base", include_str!("base.hbs")) .unwrap(); handlebars });