Load templating variables from file

This commit is contained in:
2021-11-14 20:26:51 +01:00
parent 7cc798fcab
commit 61676bc6ee
5 changed files with 50 additions and 2 deletions

View File

@ -19,6 +19,12 @@ pub enum InnerError {
#[error("Failed to parse template file")]
TemplateErr(#[from] blueprint::Error),
#[error("Failed to parse toml file")]
TomlErr(#[from] toml::de::Error),
#[error("Unsupported variable type")]
TypeErr,
}
impl From<Vec<Error>> for Errors {