cli/tunnels/
nosleep.rs

1/*---------------------------------------------------------------------------------------------
2 *  Copyright (c) Microsoft Corporation. All rights reserved.
3 *  Licensed under the MIT License. See License.txt in the project root for license information.
4 *--------------------------------------------------------------------------------------------*/
5
6#[cfg(target_os = "windows")]
7pub type SleepInhibitor = super::nosleep_windows::SleepInhibitor;
8
9#[cfg(target_os = "linux")]
10pub type SleepInhibitor = super::nosleep_linux::SleepInhibitor;
11
12#[cfg(target_os = "macos")]
13pub type SleepInhibitor = super::nosleep_macos::SleepInhibitor;