mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-15 03:11:02 +01: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
|
|
}
|