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