File size: 261 Bytes
1c4c66b | 1 2 3 4 5 6 7 8 9 10 | package customerservice
import "github.com/openmeterio/openmeter/openmeter/customer"
var _ customer.RequestValidatorService = (*Service)(nil)
func (s *Service) RegisterRequestValidator(v customer.RequestValidator) {
s.requestValidatorRegistry.Register(v)
}
|