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