"""Orders app data endpoints.""" 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("orders") return bp