package infra // ConfigValidation holds the result of validating a configuration struct. type ConfigValidation struct { Errors []ConfigError // all validation errors found; empty if valid IsValid bool // true if Errors is empty }