MissingFieldIgnorer defines the interface for configuration types that can ignore missing fields during TOML file loading. Types implementing this interface can control whether missing field warnings are suppressed when parsing configuration files.
| 4 | // during TOML file loading. Types implementing this interface can control whether missing field |
| 5 | // warnings are suppressed when parsing configuration files. |
| 6 | type MissingFieldIgnorer interface { |
| 7 | GetIgnoreMissingFields() bool |
| 8 | } |
no outgoing calls
no test coverage detected