python-dependency-injector/objects/__init__.py

17 lines
470 B
Python
Raw Normal View History

2015-03-09 01:01:39 +03:00
"""Objects."""
2015-01-04 16:54:25 +03:00
from .catalog import AbstractCatalog, overrides
2015-01-11 16:03:45 +03:00
from .providers import (Provider, NewInstance, Singleton, Class, Object,
Function, Value)
2015-01-11 19:11:16 +03:00
from .injections import InitArg, Attribute, Method
2015-01-04 16:54:25 +03:00
2015-03-09 01:01:39 +03:00
__all__ = ('AbstractCatalog', 'overrides',
2015-01-10 12:24:25 +03:00
# Providers
'Provider', 'NewInstance', 'Singleton', 'Class',
'Object', 'Function', 'Value',
# Injections
2015-03-09 01:01:39 +03:00
'InitArg', 'Attribute', 'Method')