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

14 lines
451 B
Rust

// file: crates/ksp-store-api/src/model.rs
// version: 3
//! 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_primitives;
pub(crate) mod raw_transaction;