fx-gateway 0.1.1

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
8
9
//! API Gateway for aggregating all services

pub mod api;
pub mod handlers;
mod openapi_proxy;
mod proxy_types;

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