mirror of
https://github.com/tiny-craft/tiny-rdm.git
synced 2025-05-02 13:48:04 +08:00
13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
import { Environment } from 'wailsjs/runtime/runtime.js'
|
|
|
|
let os = ''
|
|
|
|
export async function loadEnvironment() {
|
|
const env = await Environment()
|
|
os = env.platform
|
|
}
|
|
|
|
export function isMacOS() {
|
|
return os === 'darwin'
|
|
}
|