diff --git a/src/rate_limiter.py b/src/rate_limiter.py index a0fd8e7..18a403c 100644 --- a/src/rate_limiter.py +++ b/src/rate_limiter.py @@ -2,9 +2,9 @@ from slowapi import Limiter from slowapi.util import get_remote_address from src.config import RATELIMIT_STORAGE_URI -limiter = Limiter( - key_func=get_remote_address, - default_limits=["120 per hour", "2880 per day"], - strategy="fixed-window", - storage_uri=RATELIMIT_STORAGE_URI, -) \ No newline at end of file +# limiter = Limiter( +# key_func=get_remote_address, +# default_limits=["120 per hour", "2880 per day"], +# strategy="fixed-window", +# storage_uri=RATELIMIT_STORAGE_URI, +# ) \ No newline at end of file