mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 09:36:48 +03:00
19 lines
482 B
Python
19 lines
482 B
Python
"""
|
|
`Objects` library.
|
|
"""
|
|
|
|
from .catalog import AbstractCatalog, overrides
|
|
from .providers import (Provider, NewInstance, Singleton, Class, Object,
|
|
Function, Value)
|
|
from .injections import InitArg, Attribute, Method
|
|
|
|
|
|
__all__ = ['AbstractCatalog', 'overrides',
|
|
|
|
# Providers
|
|
'Provider', 'NewInstance', 'Singleton', 'Class',
|
|
'Object', 'Function', 'Value',
|
|
|
|
# Injections
|
|
'InitArg', 'Attribute', 'Method']
|