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.
6 lines
165 B
Python
6 lines
165 B
Python
"""Compatibility import for the Gitea adapter."""
|
|
import importlib
|
|
import sys
|
|
_module = importlib.import_module("entrypoints.gitea")
|
|
sys.modules[__name__] = _module
|