"""Account app data endpoints. All queries are defined in ``account/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("account") return bp