mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 14:31:16 +00:00
599579aee6
(cherry picked from commit 6064457620b202da7442884b45f9e21556df88b8)
7 lines
225 B
Python
7 lines
225 B
Python
from module.device.env import IS_WINDOWS
|
|
|
|
if IS_WINDOWS:
|
|
from module.device.platform.platform_windows import PlatformWindows as Platform
|
|
else:
|
|
from module.device.platform.platform_base import PlatformBase as Platform
|