"""汇率路由。""" from __future__ import annotations from fastapi import APIRouter from services.fx import get_fx_rate router = APIRouter(prefix="/api/fx", tags=["fx"]) @router.get("") async def fx(): return await get_fx_rate()