def app():
    return create_app()
Exemplo n.º 2
0
def app():
    app = create_app()
    yield app
    app.container.unwire()
Exemplo n.º 3
0
def app():
    Sanic.test_mode = True
    app = create_app()
    yield app
    app.ctx.container.unwire()