15 lines
319 B
Rust
15 lines
319 B
Rust
//! Key-Value Store functionality
|
|
//!
|
|
//! This module provides a simple key-value store with encryption support.
|
|
|
|
mod error;
|
|
mod store;
|
|
|
|
// Re-export public types and functions
|
|
pub use error::KvsError;
|
|
pub use store::{
|
|
KvStore, KvPair,
|
|
create_store, open_store, delete_store,
|
|
list_stores, get_store_path
|
|
};
|