paws/paws/views.py
2020-01-13 04:59:27 -05:00

10 lines
152 B
Python

import aiohttp
async def heck(request):
data = {
'path': request.match_info.get('path'),
'msg': 'UvU'
}
return aiohttp.web.json_response(data)