8 lines
192 B
Python
8 lines
192 B
Python
"""Compatibility alias for the canonical review-assistant implementation."""
|
|
|
|
import sys
|
|
|
|
from backend.features.review import agent as _implementation
|
|
|
|
sys.modules[__name__] = _implementation
|