2015-01-04 16:54:25 +03:00
|
|
|
"""
|
|
|
|
`Objects` library.
|
|
|
|
"""
|
|
|
|
|
2015-01-18 03:28:41 +03:00
|
|
|
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
|
|
|
|
|
|
|
|
2015-01-18 03:28:41 +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']
|