1
0
mirror of https://github.com/LibreTranslate/LibreTranslate.git synced 2024-09-17 18:50:14 +02:00
LibreTranslate/app/no_limiter.py

11 lines
188 B
Python
Raw Normal View History

2021-02-26 15:58:29 +01:00
from functools import wraps
2021-05-18 05:41:02 +02:00
2021-02-26 15:58:29 +01:00
class Limiter:
2021-05-18 05:41:02 +02:00
def exempt(self, f):
@wraps(f)
def wrapper(*args, **kwargs):
return f(*args, **kwargs)
return wrapper