Files
netbird/relay/auth/validator.go
T
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
}