13 lines
236 B
Python
13 lines
236 B
Python
from office365_admin 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,
|
|
)
|
|
|