Files
khadhroony-solana-project/crates/ksp-store-api/src/model.rs
2026-08-29 09:10:07 +02:00

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;