Skip to main content

futu_backend/
trade_cmd.rs

1//! Trade backend command registry compatibility layer.
2//!
3//! v1.5.0 moves command metadata ownership to `futu-command-spec`. Keep this
4//! module as the stable backend import path while callers migrate.
5
6pub use futu_command_spec::trade::*;
7
8#[cfg(test)]
9mod tests;