autogestionale/autogestionale/routes.py

10 lines
251 B
Python
Raw Normal View History

2017-09-30 01:36:10 +02:00
def setup_routes(app):
app.router.add_route('GET','/', info)
app.router.add_route('GET', '/login', info)
app.router.add_route('POST', '/login', info)
async def info(request):
return json_response({
'this is': 'working'
})