Create a struct that will combine all the context for converting intermediate objects into the dust render context.

This commit is contained in:
Tom Alexander
2023-12-19 14:54:12 -05:00
parent 94d9a95967
commit cb3278aba5
4 changed files with 31 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ use crate::error::CustomError;
use super::raw::RawConfig;
/// This is the config struct used by most of the code, which is an interpreted version of the RawConfig struct which is the raw disk-representation of the config.
#[derive(Debug)]
pub(crate) struct Config {
raw: RawConfig,
config_path: PathBuf,