1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-15 06:29:26 +08:00
Files
Alas/module/device/env.py
2024-07-12 01:05:58 +08:00

6 lines
124 B
Python

import sys
IS_WINDOWS = sys.platform == 'win32'
IS_MACINTOSH = sys.platform == 'darwin'
IS_LINUX = sys.platform == 'linux'