mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 03:33:54 +00:00
10 lines
228 B
Rust
10 lines
228 B
Rust
use anyhow::{bail, Result};
|
|
|
|
pub fn create_key(_key: &str, _subkey: &str, _value: &str) -> Result<()> {
|
|
bail!("Not implemented")
|
|
}
|
|
|
|
pub fn delete_key(_key: &str, _subkey: &str) -> Result<()> {
|
|
bail!("Not implemented")
|
|
}
|