mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 17:32:47 +08:00
13 lines
234 B
Go
13 lines
234 B
Go
package validator
|
|
|
|
import "context"
|
|
|
|
type FakeAnonUserLimitValidator struct {
|
|
}
|
|
|
|
var _ AnonUserLimitValidator = (*FakeAnonUserLimitValidator)(nil)
|
|
|
|
func (f FakeAnonUserLimitValidator) Validate(_ context.Context) error {
|
|
return nil
|
|
}
|