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