8 lines
192 B
Python
8 lines
192 B
Python
"""Compatibility alias for the canonical curated strategy library."""
|
|
|
|
import sys
|
|
|
|
from backend.features.screener import strategies as _implementation
|
|
|
|
sys.modules[__name__] = _implementation
|