Closed LiHRaM closed 4 years ago
Closes #12.
This PR uses match instead of unwrap to handle possible failures in type conversions for the values in the configuration.
match
unwrap
In its current state, it continues on failure, meaning that if the first section is has incorrect types, subsequent sections may still work.
Ah, neat, thanks!
Closes #12.
This PR uses
match
instead ofunwrap
to handle possible failures in type conversions for the values in the configuration.In its current state, it continues on failure, meaning that if the first section is has incorrect types, subsequent sections may still work.