mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-16 03:41:26 +01:00
6 lines
64 B
Go
6 lines
64 B
Go
|
package auth
|
||
|
|
||
|
type Validator interface {
|
||
|
Validate(any) error
|
||
|
}
|