mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 06:25:24 +00:00
599579aee6
(cherry picked from commit 6064457620b202da7442884b45f9e21556df88b8)
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'
|