8 lines
194 B
Python
8 lines
194 B
Python
"""Compatibility alias for the canonical screener engine implementation."""
|
|
|
|
import sys
|
|
|
|
from backend.features.screener import engine as _implementation
|
|
|
|
sys.modules[__name__] = _implementation
|