rbp-core 1.0.0

Core types, constants, and DTOs for robopoker
Documentation
1
2
3
4
5
6
7
8
9
//! Data transfer objects for API communication.
//!
//! Request and response types for the analysis API, serializable via `serde`.
//! These types bridge the gap between the Rust domain model and JSON payloads.
mod request;
mod response;

pub use request::*;
pub use response::*;