mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-27 17:42:04 +08:00
feb03f3625
old-commit-hash: 8c1176ca839bdfd805f87d281a6d06b9af881eb5
9 lines
113 B
Python
9 lines
113 B
Python
import platform
|
|
|
|
|
|
def suffix():
|
|
if platform.system() == "Darwin":
|
|
return ".dylib"
|
|
else:
|
|
return ".so"
|