mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 02:33:46 +00:00
6 lines
194 B
Rust
6 lines
194 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 password;
|
|
pub use password::*;
|