tests & fixes in kvs & keypair

This commit is contained in:
2025-05-13 06:45:04 +03:00
parent 3a0900fc15
commit 3f8aecb786
12 changed files with 343 additions and 21 deletions

View File

@@ -165,3 +165,9 @@ let loaded_store = KvStore::load("my_store", "secure_password")?;
let api_key = loaded_store.get("api_key")?;
println!("API Key: {}", api_key.unwrap_or_default());
```
## to test
```bash
cargo test --lib vault::keypair
```