simple_unc/lib.rs
1//! Please see the [README] for a high-level overview,
2//! and the [`SimpleUnc`] struct for the detailed features.
3//!
4//! [README]: https://github.com/kojiishi/simple-unc
5
6mod display;
7#[cfg(windows)]
8mod drive_path;
9#[cfg(windows)]
10mod path_ext;
11mod simple_unc;
12#[cfg(windows)]
13mod volume;
14
15pub use display::Display;
16#[cfg(windows)]
17pub(crate) use drive_path::DrivePath;
18#[cfg(windows)]
19pub(crate) use path_ext::PathExt;
20pub use simple_unc::SimpleUnc;
21#[cfg(windows)]
22pub(crate) use volume::Volumes;