ic_query/cache/mod.rs
1//! Shared cache report models and host-only local inventory helpers.
2
3mod model;
4#[cfg(feature = "host")]
5mod status;
6#[cfg(feature = "host")]
7mod text;
8
9pub use model::{
10 CACHE_STATUS_REPORT_SCHEMA_VERSION, CacheFileStatus, CacheRefreshLockStatus,
11 CacheRefreshLockStatusRow, CacheStatusReport, CacheStatusRequest, CacheStatusRow,
12 CacheValidationStatus,
13};
14#[cfg(feature = "host")]
15pub use status::{CacheStatusError, build_cache_status_report};
16#[cfg(feature = "host")]
17pub use text::cache_status_report_text;