Test-bot / plugins /route.py
kgashok's picture
Update plugins/route.py
adc6442
raw
history blame
173 Bytes
from aiohttp import web
routes = web.RouteTableDef()
@routes.get("/", allow_head=True)
async def root_route_handler(request):
return web.json_response("Benfilterbot")