python-dependency-injector/objects/__init__.py
2015-01-11 18:11:16 +02:00

19 lines
466 B
Python

"""
`Objects` library.
"""
from .catalog import Catalog, overrides
from .providers import (Provider, NewInstance, Singleton, Class, Object,
Function, Value)
from .injections import InitArg, Attribute, Method
__all__ = ['Catalog', 'overrides',
# Providers
'Provider', 'NewInstance', 'Singleton', 'Class',
'Object', 'Function', 'Value',
# Injections
'InitArg', 'Attribute', 'Method']