Files
odysseus/src/search/providers.py
2026-06-02 21:02:26 +09:00

13 lines
391 B
Python

"""Compatibility wrapper for the canonical services.search.providers module.
Historically Odysseus carried duplicate provider implementations under both
``src.search`` and ``services.search``. Keep the old import path working, but
make provider behavior come from one source of truth.
"""
import sys
from services.search import providers as _providers
sys.modules[__name__] = _providers