1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-15 02:18:42 +02:00

fix: native build on unix and windows

This commit is contained in:
Andreas Coroiu 2024-08-28 13:22:54 +02:00
parent 631fad7084
commit ed0cf93748
No known key found for this signature in database
GPG Key ID: E70B5FFC81DFEC1A
2 changed files with 4 additions and 14 deletions

View File

@ -1,10 +1,5 @@
use anyhow::Result;
pub fn hello_world(value: String) -> Result<String> {
Ok(value)
}
#[cfg(test)]
mod tests {
// use super::*;
pub async fn run_command(value: String) -> Result<String> {
todo!("Unix does not support autofill");
}

View File

@ -1,10 +1,5 @@
use anyhow::Result;
pub fn hello_world(value: String) -> Result<String> {
Ok(value)
}
#[cfg(test)]
mod tests {
// use super::*;
pub async fn run_command(value: String) -> Result<String> {
todo!("Windows does not support autofill");
}