"""Events app action endpoints. All actions are defined declaratively in ``events/actions.sx`` and dispatched via the sx query registry. No Python fallbacks needed. """ from __future__ import annotations from shared.infrastructure.query_blueprint import create_action_blueprint from quart import Blueprint def register() -> Blueprint: bp, _handlers = create_action_blueprint("events") return bp