summaryrefslogtreecommitdiffstats
path: root/src/modules/utils/mod.rs
blob: 1d509c14bab23a124c11eaaabbebc046b8ddf979 (plain)
1
2
3
4
5
6
7
8
9
pub mod directory;

#[cfg(target_os = "windows")]
pub mod directory_win;

#[cfg(not(target_os = "windows"))]
pub mod directory_nix;

pub mod path;