mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-20 21:42:05 +08:00
fa724893fb
date: 2024-02-21T23:02:42
master commit: 0b4d08fab8
9 lines
113 B
Python
9 lines
113 B
Python
import platform
|
|
|
|
|
|
def suffix():
|
|
if platform.system() == "Darwin":
|
|
return ".dylib"
|
|
else:
|
|
return ".so"
|