1//! System status endpoints (`/api/v5/system/status`). 2 3mod api; 4mod endpoints; 5mod requests; 6mod responses; 7 8pub use api::*; 9pub use requests::*; 10pub use responses::*; 11 12#[cfg(test)] 13mod tests;