1
0
mirror of https://github.com/LibreTranslate/LibreTranslate.git synced 2025-01-23 17:52:54 +02:00

14 lines
231 B
Python
Raw Normal View History

2021-02-26 09:58:29 -05:00
from functools import wraps
2021-05-18 09:11:02 +05:30
2021-02-26 09:58:29 -05:00
class Limiter:
2021-05-18 09:11:02 +05:30
def exempt(self, f):
@wraps(f)
def wrapper(*args, **kwargs):
return f(*args, **kwargs)
return wrapper
2023-01-01 13:22:01 -05:00
def init_app(self, app):
pass