mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-01-31 19:54:30 +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)
|