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