2024-07-05 16:12:30 +02:00
|
|
|
package auth
|
|
|
|
|
|
|
|
// AllowAllAuth is a Validator that allows all connections.
|
2024-07-29 21:53:07 +02:00
|
|
|
// Used this for testing purposes only.
|
2024-07-05 16:12:30 +02:00
|
|
|
type AllowAllAuth struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AllowAllAuth) Validate(any) error {
|
|
|
|
return nil
|
|
|
|
}
|