9 lines
277 B
Python
9 lines
277 B
Python
"""Compatibility alias for daily feature plugins.
|
|
|
|
The canonical plugin API is ``pipeline.derived``. ``BaseFeature`` remains as an
|
|
alias so existing external feature modules continue to register unchanged.
|
|
"""
|
|
|
|
from pipeline.derived.base import BaseDerivedData as BaseFeature
|
|
|