Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/cli/src/tunnels/nosleep.rs
3314 views
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")]
7
pub type SleepInhibitor = super::nosleep_windows::SleepInhibitor;
8
9
#[cfg(target_os = "linux")]
10
pub type SleepInhibitor = super::nosleep_linux::SleepInhibitor;
11
12
#[cfg(target_os = "macos")]
13
pub type SleepInhibitor = super::nosleep_macos::SleepInhibitor;
14
15