7a510a926d
Group review, feedback, evaluation, observability, and entrypoint code into packages. Keep thin top-level compatibility shims for existing scripts and imports, and mirror the structure in the tests.
8 lines
225 B
Python
8 lines
225 B
Python
"""Compatibility import for feedback scores."""
|
|
import importlib
|
|
import sys
|
|
_module = importlib.import_module("feedback.scores")
|
|
sys.modules[__name__] = _module
|
|
if __name__ == "__main__":
|
|
raise SystemExit(_module.main())
|