chore: organize files

This commit is contained in:
Alexandre Teles
2023-11-21 00:13:42 -03:00
committed by Alexandre Teles (afterSt0rm)
parent 10f5225f51
commit 73252524f1
5 changed files with 5 additions and 5 deletions

7
api/limiter.py Normal file
View File

@@ -0,0 +1,7 @@
from sanic_limiter import Limiter, get_remote_address
limiter = Limiter(key_func=get_remote_address)
def configure_limiter(app):
limiter.init_app(app)