Files
pragent/pilot/webhook_server.py
T
Claude 7a510a926d refactor: organize pilot packages
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.
2026-09-01 00:59:51 +00:00

8 lines
237 B
Python

"""Compatibility import for the webhook entry point."""
import importlib
import sys
_module = importlib.import_module("entrypoints.webhook")
sys.modules[__name__] = _module
if __name__ == "__main__":
raise SystemExit(_module.main())