spotlight_dimmer/
lib.rs

1// Library exports for Spotlight Dimmer
2// This allows us to test the code without running the binaries
3
4pub mod autostart;
5pub mod config;
6pub mod platform;
7
8#[cfg(windows)]
9pub mod overlay;
10
11#[cfg(windows)]
12pub mod tray;
13
14#[cfg(windows)]
15pub mod message_window;