Read the setup file into memory.

This commit is contained in:
Tom Alexander
2023-09-04 16:53:02 -04:00
parent a7330e38e4
commit ee02e07717
4 changed files with 19 additions and 5 deletions

View File

@@ -318,6 +318,7 @@ impl<'s> From<CustomError<OrgSource<'s>>> for CustomError<&'s str> {
match value {
CustomError::MyError(err) => CustomError::MyError(err.into()),
CustomError::Nom(input, error_kind) => CustomError::Nom(input.into(), error_kind),
CustomError::IO(err) => CustomError::IO(err),
}
}
}