2015-01-04 13:54:25 +00:00
|
|
|
"""
|
|
|
|
`Objects` library.
|
|
|
|
"""
|
|
|
|
|
2015-01-04 14:26:33 +00:00
|
|
|
from .catalog import Catalog
|
|
|
|
from .std_providers import (Provider, NewInstance, Singleton, Class, Object,
|
|
|
|
Function, Value)
|
2015-01-10 09:24:25 +00:00
|
|
|
from .injections import InitArg, Attribute, Method
|
2015-01-04 13:54:25 +00:00
|
|
|
|
|
|
|
|
2015-01-10 09:24:25 +00:00
|
|
|
__all__ = ['Catalog',
|
|
|
|
|
|
|
|
# Providers
|
|
|
|
'Provider', 'NewInstance', 'Singleton', 'Class',
|
|
|
|
'Object', 'Function', 'Value',
|
|
|
|
|
|
|
|
# Injections
|
|
|
|
'InitArg', 'Attribute', 'Method']
|