mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-09 17:29:04 +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'
|