8 lines
175 B
Python
8 lines
175 B
Python
|
from aiohttp import web
|
||
|
|
||
|
async def hello(request):
|
||
|
return web.Response(text="Hello, world")
|
||
|
|
||
|
app = web.Application()
|
||
|
app.add_routes([web.get('/', hello)])
|
||
|
web.run_app(app)
|