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