mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-19 19:25:27 -04:00
6861c41580
This reverts commit cc8fe2f6e3.
14 lines
438 B
Python
14 lines
438 B
Python
"""Compatibility re-export shim for the live ranking module.
|
|
|
|
The real implementation lives in :mod:`services.search.ranking`, which is what
|
|
the search runtime (services/search/core.py) imports. This module used to hold a
|
|
parallel copy; it now re-exports so the two cannot drift out of sync again.
|
|
"""
|
|
|
|
from services.search.ranking import ( # noqa: F401
|
|
_AGE_FORMATS,
|
|
_utcnow_naive,
|
|
rank_search_results,
|
|
recency_score,
|
|
)
|