mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
10 lines
191 B
Go
10 lines
191 B
Go
package cfg
|
|
|
|
// Validatable is implemented by any value that validates a configuration setting
|
|
type Validatable interface {
|
|
Error() error
|
|
HasError() bool
|
|
String() string
|
|
IntValue() int
|
|
}
|