12 lines
136 B
Python
12 lines
136 B
Python
from microdot_asyncio import Microdot
|
|
|
|
app = Microdot()
|
|
|
|
|
|
@app.get('/')
|
|
async def index(req):
|
|
return {'hello': 'world'}
|
|
|
|
|
|
app.run()
|