(c *echo.Context, identifier string)
| 32 | // headers such as Retry-After or X-RateLimit-* on the allow/deny decision. |
| 33 | type RateLimiterStoreContext interface { |
| 34 | AllowContext(c *echo.Context, identifier string) (bool, error) |
| 35 | } |
| 36 | |
| 37 | // RateLimiterConfig defines the configuration for the rate limiter |
no outgoing calls
no test coverage detected