9 lines
140 B
Python
9 lines
140 B
Python
from aiohttp import web
|
|
|
|
|
|
async def test_route(_):
|
|
return web.json_response({'test': 'passed'}, status=200)
|
|
|
|
|
|
__all__ = ('test_route',)
|