netbird/relay/auth/validator.go
Zoltán Papp 5be33d668b Add doc
2024-07-29 21:53:07 +02:00

7 lines
127 B
Go

package auth
// Validator is an interface that defines the Validate method.
type Validator interface {
Validate(any) error
}