archive
/
actioner
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
actioner/actioner/web/healthcheck.py

10 lines
175 B
Python

from aiohttp import web
from actioner.clients import github
async def healthcheck(request):
return web.json_response({
'github': github.get_user().login
})