Added /ping endpoint

This commit is contained in:
Stranck 2024-05-31 17:00:13 +02:00
parent b34aad1b11
commit 1efc0ac030
1 changed files with 4 additions and 0 deletions

4
api.py
View File

@ -112,6 +112,10 @@ async def token_test(request):
return response.json({'ok': False, 'error': 'The token you have provided is not correct.'}, status=401)
return response.json({'ok': True, 'message': 'This token is valid :)'})
@bp.get("/ping")
async def ping(request):
return response.text("pong")
@bp.get("/welcome")
async def welcome_app(request):