netbird/relay/auth/validator.go

7 lines
127 B
Go
Raw Normal View History

2024-07-05 16:12:30 +02:00
package auth
2024-07-29 21:53:07 +02:00
// Validator is an interface that defines the Validate method.
2024-07-05 16:12:30 +02:00
type Validator interface {
Validate(any) error
}