- Renamed examples directory to `_archive` to reflect legacy status. - Updated README.md to reflect current status of vault module, including migration from Sameh's implementation to Lee's. - Temporarily disabled Rhai scripting integration for the vault. - Added notes regarding current and future development steps.
15 lines
362 B
Rust
15 lines
362 B
Rust
//! Key-Value Store functionality
|
|
//!
|
|
//! This module provides a simple key-value store with encryption support.
|
|
|
|
pub mod error;
|
|
pub mod store;
|
|
|
|
// Re-export public types and functions
|
|
pub use error::KvsError;
|
|
pub use store::{
|
|
create_store, delete_store, get_store_path, list_stores, open_store, KvPair, KvStore,
|
|
};
|
|
|
|
// Tests are now in the tests/ directory
|