1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-04 18:53:20 +00:00

test new ci check

This commit is contained in:
neuronull
2025-09-22 14:19:53 -06:00
parent b1ee8c1626
commit 34972c12ed
2 changed files with 8 additions and 0 deletions

View File

@@ -20,3 +20,7 @@ pub fn get_foreground_window_title() -> std::result::Result<String, ()> {
pub fn type_input(input: Vec<u16>) -> std::result::Result<(), ()> {
windowing::type_input(input)
}
pub fn foo_bar() -> std::result::Result<(), ()> {
Ok(())
}

View File

@@ -1049,4 +1049,8 @@ pub mod autotype {
napi::Error::from_reason("Autotype Error: failed to type input".to_string())
})
}
#[napi]
pub fn foo_bar() -> napi::Result<(), napi::Status> {
Ok(())
}
}