ids_apis/
lib.rs

1pub mod google {
2    pub mod protobuf {
3        pub use pbjson_types::{FieldMask, Timestamp};
4    }
5}
6
7/// File descriptor set for gRPC reflection support
8pub const FILE_DESCRIPTOR_SET: &[u8] = include_bytes!("../descriptor.bin");
9
10// pub mod log_sync {
11//     pub mod v1 {
12//         pub mod pnl {
13//             include!("log_sync.v1.pnl.rs");
14//         }
15//         pub mod order_log {
16//             include!("log_sync.v1.order_log.rs");
17//         }
18//     }
19// }
20
21pub mod kdo {
22    pub mod v1 {
23        pub mod market {
24            include!("kdo.v1.market.rs");
25        }
26        pub mod etf {
27            include!("kdo.v1.etf.rs");
28        }
29        pub mod fund {
30            include!("kdo.v1.fund.rs");
31        }
32        pub mod lp {
33            include!("kdo.v1.lp.rs");
34        }
35        pub mod stock_inventory {
36            include!("kdo.v1.stock_inventory.rs");
37        }
38        pub mod order_log {
39            include!("kdo.v1.order_log.rs");
40        }
41    }
42}