(e error)
| 55 | } |
| 56 | |
| 57 | func IsLimitError(e error) bool { |
| 58 | var limitError LimitError |
| 59 | return errors.As(e, &limitError) |
| 60 | } |
| 61 | |
| 62 | type DisabledRuleGroup struct { |
| 63 | Namespace string `yaml:"namespace" doc:"nocli|description=namespace in which the rule group belongs"` |
no outgoing calls