zephyrfs-node Public
| 1 | // Storage module - placeholder for Phase 1.2 implementation |
| 2 | // |
| 3 | // Safety: Storage will implement encryption at rest by default |
| 4 | // Privacy: All data stored is encrypted with user-controlled keys |
| 5 | // Transparency: Storage operations are logged for audit trail |
| 6 | |
| 7 | pub mod chunk_store; |
| 8 | pub mod metadata_store; |
| 9 | |
| 10 | // Re-export main storage interface |
| 11 | pub use chunk_store::ChunkStore; |
| 12 | pub use metadata_store::MetadataStore; |