Remove spurious async in documentation example (#187)
This commit is contained in:
@@ -462,7 +462,7 @@ the sub-applications to build the larger combined application::
|
|||||||
from customers import customers_app
|
from customers import customers_app
|
||||||
from orders import orders_app
|
from orders import orders_app
|
||||||
|
|
||||||
async def create_app():
|
def create_app():
|
||||||
app = Microdot()
|
app = Microdot()
|
||||||
app.mount(customers_app, url_prefix='/customers')
|
app.mount(customers_app, url_prefix='/customers')
|
||||||
app.mount(orders_app, url_prefix='/orders')
|
app.mount(orders_app, url_prefix='/orders')
|
||||||
|
|||||||
Reference in New Issue
Block a user