Skip to content

Commit e0bbea0

Browse files
committed
Export RateLimiterPlugin from cpex_rate_limiter package (#5)
Allow `from cpex_rate_limiter import RateLimiterPlugin` to work without reaching into the submodule. Signed-off-by: Jonathan Springer <jps@s390x.com> Signed-off-by: lucarlig <luca.carlig@ibm.com>
1 parent 2ddd70b commit e0bbea0

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

rate_limiter/cpex_rate_limiter/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@
99
and backends, including in-memory and Redis, for per-user, per-tenant, and/or
1010
per-tool rate limiting. See the plugin documentation for configuration details.
1111
"""
12+
13+
from cpex_rate_limiter.rate_limiter import RateLimiterPlugin
14+
15+
__all__ = ["RateLimiterPlugin"]

0 commit comments

Comments
 (0)