mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
10 lines
211 B
Rust
10 lines
211 B
Rust
use anyhow::{Result, bail};
|
|
|
|
pub fn prompt(_hwnd: Vec<u8>, _message: String) -> Result<bool> {
|
|
bail!("platform not supported");
|
|
}
|
|
|
|
pub fn available() -> Result<bool> {
|
|
bail!("platform not supported");
|
|
}
|