"""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())