7 lines
110 B
Go
7 lines
110 B
Go
|
package validators
|
||
|
|
||
|
type TextInputValidator interface {
|
||
|
Notice() string
|
||
|
ValidationFunc(input string) bool
|
||
|
}
|