mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-19 16:56:39 +00: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
|
|
}
|