🔧 Copied self hosted docker apps
This commit is contained in:
parent
36943e27da
commit
abc55d8ed5
209 changed files with 58596 additions and 0 deletions
13
self_host/LibreTranslate/libretranslate/no_limiter.py
Normal file
13
self_host/LibreTranslate/libretranslate/no_limiter.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
from functools import wraps
|
||||
|
||||
|
||||
class Limiter:
|
||||
def exempt(self, f):
|
||||
@wraps(f)
|
||||
def wrapper(*args, **kwargs):
|
||||
return f(*args, **kwargs)
|
||||
|
||||
return wrapper
|
||||
|
||||
def init_app(self, app):
|
||||
pass
|
||||
Loading…
Add table
Add a link
Reference in a new issue