python-dependency-injector/objects/__init__.py
2015-03-09 00:01:39 +02:00

17 lines
470 B
Python

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