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

12 lines
250 B
Python

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