usecrate::{Error, Template};usebincode::deserialize;usestd::fs::read;/// Load a template from a .soda file and return a Template struct
pubfnload_template(path:&str)->Result<Template, Error>{let bytes =read(path)?;let template: Template =deserialize(&bytes)?;Ok(template)}