15 lines
457 B
Python
15 lines
457 B
Python
"""Public review interface.
|
|
|
|
Keep this module deliberately small. Existing callers import ``ai_review``
|
|
directly, so the compatibility facade exposes the implementation module under
|
|
the old name while the implementation is free to be split behind package
|
|
seams without changing callers.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
import importlib
|
|
import sys
|
|
|
|
_implementation = importlib.import_module("review.pipeline")
|
|
sys.modules[__name__] = _implementation
|