mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 01:56:58 +03:00
13 lines
283 B
Python
13 lines
283 B
Python
|
"""Main module."""
|
||
|
|
||
|
from .containers import Application
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
application = Application()
|
||
|
config = application.service.config()
|
||
|
config.build()
|
||
|
|
||
|
print(application.repository.site())
|
||
|
# Output: Adapter=[DB Path=[~/test]], queue=[Some storage]
|