Example #1
0
def app():
    _app = create_app()
    _app.client = _app.test_client()
    return _app
Example #2
0
from har_api import create_app

if __name__ == '__main__':
    app = create_app()
    app.run(debug=True)