mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 14:31:16 +00: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
|