fx-gateway 0.1.0

API gateway utilities and OpenAPI specification for FX trading platform. Provides unified API interface, request routing, WebSocket aggregation, and OpenAPI/Swagger documentation for all trading services.
1
2
3
4
5
6
7
//! API Gateway for aggregating all services

pub mod api;
pub mod handlers;

pub use api::GatewayApi;
pub use handlers::{health, root};