Files
office365-self-service/app.py

10 lines
240 B
Python

from office365_self_service import create_app
app = create_app()
if __name__ == "__main__":
app.run(
host=app.config["SETTINGS"].host,
port=app.config["SETTINGS"].port,
debug=app.config["SETTINGS"].debug,
)