mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-25 18:05:26 +00:00
6 lines
124 B
Python
6 lines
124 B
Python
|
import sys
|
||
|
|
||
|
IS_WINDOWS = sys.platform == 'win32'
|
||
|
IS_MACINTOSH = sys.platform == 'darwin'
|
||
|
IS_LINUX = sys.platform == 'linux'
|