mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-15 03:54:49 +08:00
9 lines
113 B
Python
9 lines
113 B
Python
import platform
|
|
|
|
|
|
def suffix():
|
|
if platform.system() == "Darwin":
|
|
return ".dylib"
|
|
else:
|
|
return ".so"
|