keep-active 0.1.2

Keep your computer awake and active
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use cfg_if::cfg_if;

cfg_if! {
    if #[cfg(windows)] {
        mod windows;
        pub use self::windows::*;
    } else if #[cfg(target_os = "linux")] {
        mod linux;
        pub use self::linux::*;
    } else if #[cfg(target_os = "macos")] {
        mod macos;
        pub use self::macos::*;
    } else {
        compile_error!("Unsupported cfg");
    }
}