python-dependency-injector/objects/__init__.py

19 lines
482 B
Python
Raw Normal View History

2015-01-04 16:54:25 +03:00
"""
`Objects` library.
"""
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
__all__ = ['AbstractCatalog', 'overrides',
2015-01-10 12:24:25 +03:00
# Providers
'Provider', 'NewInstance', 'Singleton', 'Class',
'Object', 'Function', 'Value',
# Injections
2015-01-11 19:11:16 +03:00
'InitArg', 'Attribute', 'Method']