stats.py 154 B

12345
  1. from aiohttp.web import Response
  2. from json import dumps
  3. async def get_status(request):
  4. return Response(body=dumps({"msg": "all_ok", "status": 200}))