mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 04:57:00 +01:00
10 lines
239 B
Rust
10 lines
239 B
Rust
#[cfg(target_family = "windows")]
|
|
mod windows;
|
|
#[cfg(target_family = "windows")]
|
|
pub use windows::{diagnose_path, readonly};
|
|
|
|
#[cfg(target_family = "unix")]
|
|
mod unix;
|
|
#[cfg(target_family = "unix")]
|
|
pub use unix::{diagnose_path, readonly};
|