You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the Config objects all implement the Validateable interface. This requires that the validate() function is called before using the config, so a better way would be to create ValidatedConfig objects for each and use them as decorators.
Would require writing the validations for each config, for now only PayloadConfig and RelpConfig have implemented the validation functions.
The text was updated successfully, but these errors were encountered:
Description
Currently the Config objects all implement the Validateable interface. This requires that the
validate()
function is called before using the config, so a better way would be to create ValidatedConfig objects for each and use them as decorators.Would require writing the validations for each config, for now only
PayloadConfig
andRelpConfig
have implemented the validation functions.The text was updated successfully, but these errors were encountered: