mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-10-09 13:26:56 +03:00
15 lines
208 B
Cython
15 lines
208 B
Cython
"""Dependency injector callable providers.
|
|
|
|
Powered by Cython.
|
|
"""
|
|
|
|
from .base cimport Provider
|
|
|
|
|
|
cdef class Callable(Provider):
|
|
pass
|
|
|
|
|
|
cdef class DelegatedCallable(Callable):
|
|
__IS_DELEGATED__ = True
|