"""Market app action endpoints. All actions are defined in ``market/actions.sx``. """ from __future__ import annotations from quart import Blueprint from shared.infrastructure.query_blueprint import create_action_blueprint def register() -> Blueprint: bp, _handlers = create_action_blueprint("market") return bp