mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-02-06 22:50:52 +03:00
9 lines
160 B
Python
9 lines
160 B
Python
|
"""Entrypoint module."""
|
||
|
|
||
|
from .application import Application
|
||
|
|
||
|
|
||
|
application = Application()
|
||
|
application.config.from_yaml('config.yml')
|
||
|
app = application.app()
|