17 lines
540 B
Rust
17 lines
540 B
Rust
// file: crates/ksp-store-api/src/model.rs
|
|
// version: 4
|
|
|
|
//! Private home for persistent Store models.
|
|
//!
|
|
//! The current release is N1 RAW-only. Future N2 STRUCTURAL models are a
|
|
//! separate data layer and are not introduced here. Persistent models and
|
|
//! backend capabilities remain separate even when one capability operates on
|
|
//! one or more models.
|
|
|
|
pub(crate) mod raw_account;
|
|
pub(crate) mod raw_outcome;
|
|
pub(crate) mod raw_pagination;
|
|
pub(crate) mod raw_primitives;
|
|
pub(crate) mod raw_retention;
|
|
pub(crate) mod raw_transaction;
|