9 lines
121 B
Python
9 lines
121 B
Python
from microdot.asgi import Microdot
|
|
|
|
app = Microdot()
|
|
|
|
|
|
@app.get('/')
|
|
async def index(req):
|
|
return {'hello': 'world'}
|