mirror of
https://github.com/W1NDes/M-AzurLaneAutoScript.git
synced 2026-05-20 23:28:20 +08:00
7 lines
208 B
Python
7 lines
208 B
Python
|
|
import sys
|
||
|
|
|
||
|
|
if sys.platform == 'win32':
|
||
|
|
from module.device.platform.platform_windows import PlatformWindows as Platform
|
||
|
|
else:
|
||
|
|
from module.device.platform.platform_base import PlatformBase as Platform
|