mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-05 07:20:13 +01:00
9 lines
156 B
Python
9 lines
156 B
Python
|
from functools import wraps
|
||
|
|
||
|
class Limiter:
|
||
|
def exempt(self, f):
|
||
|
@wraps(f)
|
||
|
def wrapper(*args, **kwargs):
|
||
|
return f(*args, **kwargs)
|
||
|
return wrapper
|