Renamed mod.s rs files

This commit is contained in:
Antoine Gersant 2022-11-08 23:53:02 -08:00
parent a5f5a77100
commit df0de19567
16 changed files with 0 additions and 0 deletions

11
src/ui.rs Normal file
View file

@ -0,0 +1,11 @@
#[cfg(all(windows, feature = "ui"))]
mod windows;
#[cfg(all(windows, feature = "ui"))]
pub use self::windows::*;
#[cfg(not(all(windows, feature = "ui")))]
mod headless;
#[cfg(not(all(windows, feature = "ui")))]
pub use self::headless::*;