#!/usr/bin/env python3

from ibkr_report import create_app, definitions

app = create_app()

app.run(host="127.0.0.1", port=8080, debug=definitions.DEBUG)
