futu_rest/
lib.rs

1//! FutuOpenD REST API 服务
2//!
3//! 将 HTTP JSON 请求转换为 protobuf,调用现有 RequestRouter,
4//! 再将 protobuf 响应转回 JSON 返回。
5//!
6//! 架构:
7//!   HTTP JSON → IncomingRequest(proto_id, body) → RequestHandler → protobuf → JSON
8
9pub mod adapter;
10pub mod auth;
11pub mod routes;
12pub mod server;
13pub mod ws;