mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-24 02:24:02 +03:00
9 lines
159 B
Python
9 lines
159 B
Python
"""Main module."""
|
|
|
|
from .application import create_app
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = create_app()
|
|
app.run(host="0.0.0.0", port=8000, debug=True)
|