mirror of
https://github.com/netbirdio/netbird.git
synced 2025-08-07 06:27:20 +02:00
7 lines
127 B
Go
7 lines
127 B
Go
package auth
|
|
|
|
// Validator is an interface that defines the Validate method.
|
|
type Validator interface {
|
|
Validate(any) error
|
|
}
|