d76e4c51d6
Anonymous User: Adds validator service for anonymous users (#94700)
(cherry picked from commit 3438196010)
Co-authored-by: lean.dev <34773040+leandro-deveikis@users.noreply.github.com>
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
|
|
}
|