python-dependency-injector/objects/__init__.py
2015-01-04 16:26:33 +02:00

12 lines
294 B
Python

"""
`Objects` library.
"""
from .catalog import Catalog
from .std_providers import (Provider, NewInstance, Singleton, Class, Object,
Function, Value)
__all__ = ['Catalog', 'Provider', 'NewInstance', 'Singleton', 'Class',
'Object', 'Function', 'Value']