mirror of
https://github.com/W1NDes/M-AzurLaneAutoScript.git
synced 2026-05-14 06:07:59 +08: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'
|