signal-desktop/ts/util/os/osMain.ts
2023-04-20 17:23:19 -04:00

9 lines
209 B
TypeScript

// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import os from 'os';
import { getOSFunctions } from './shared';
const OS = getOSFunctions(os.release());
export default OS;