mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-28 20:44:01 +03:00
17 lines
470 B
Python
17 lines
470 B
Python
"""Objects."""
|
|
|
|
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')
|