mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 09:36:48 +03:00
12 lines
294 B
Python
12 lines
294 B
Python
"""
|
|
`Objects` library.
|
|
"""
|
|
|
|
from .catalog import Catalog
|
|
from .std_providers import (Provider, NewInstance, Singleton, Class, Object,
|
|
Function, Value)
|
|
|
|
|
|
__all__ = ['Catalog', 'Provider', 'NewInstance', 'Singleton', 'Class',
|
|
'Object', 'Function', 'Value']
|