python-dependency-injector/objects/__init__.py

12 lines
294 B
Python
Raw Normal View History

2015-01-04 16:54:25 +03:00
"""
`Objects` library.
"""
2015-01-04 17:26:33 +03:00
from .catalog import Catalog
from .std_providers import (Provider, NewInstance, Singleton, Class, Object,
Function, Value)
2015-01-04 16:54:25 +03:00
2015-01-04 17:26:33 +03:00
__all__ = ['Catalog', 'Provider', 'NewInstance', 'Singleton', 'Class',
'Object', 'Function', 'Value']