Files
python-repositories/python_repositories/interfaces/__init__.py
T
Brian Bjarke Jensen 1abcae4050
Code Quality Pipeline / code-quality (pull_request) Failing after 42s
Test Python Package / test (pull_request) Failing after 1s
added redis adapter
2025-09-14 15:45:19 +02:00

8 lines
253 B
Python

from .connection_aware_interface import ConnectionAwareInterface as ConnectionAwareInterface
from .context_aware_interface import ContextAwareInterface as ContextAwareInterface
__all__ = [
"ConnectionAwareInterface",
"ContextAwareInterface",
]