Skip to main content

futu_qot/
page_bounds.rs

1//! Compatibility shell for QOT pagination validation.
2//!
3//! The pure contract lives in `futu-core` so gateway/REST/MCP do not need the
4//! legacy `futu-qot` facade for input validation rules.
5
6pub use futu_core::qot_page_bounds::{
7    PageBounds, PageBoundsError, PageBoundsErrorReason, validate_begin_num,
8    validate_optional_max_count,
9};
10
11#[cfg(test)]
12mod tests;