mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-06 19:45:24 +00:00
8 lines
152 B
Python
8 lines
152 B
Python
import platform
|
|
|
|
def is_platform_windows():
|
|
return platform.system() == "Windows"
|
|
|
|
def is_platform_linux():
|
|
return platform.system() == "Linux"
|