1
0
mirror of https://github.com/bitwarden/desktop synced 2026-02-28 10:23:14 +00:00
Files
desktop/desktop_native/src/biometric/mod.rs
2022-04-25 15:45:42 +02:00

6 lines
196 B
Rust

#[cfg_attr(target_os = "linux", path = "unix.rs")]
#[cfg_attr(target_os = "windows", path = "windows.rs")]
#[cfg_attr(target_os = "macos", path = "macos.rs")]
mod biometric;
pub use biometric::*;