Merge branch 'backend' into frontend

This commit is contained in:
minhtrannhat 2023-09-04 16:48:01 -04:00
commit 5e72b2ebc9
Signed by: minhtrannhat
GPG Key ID: E13CFA85C53F8062

View File

@ -7,4 +7,7 @@ blueprint = Blueprint("control", __name__)
@blueprint.get("/control/ping/")
@rate_exempt
async def ping() -> ResponseReturnValue:
"""Ping the server
Check if server is up and running.
"""
return {"ping": "pong"}