mirror of
https://github.com/ajouatom/openpilot.git
synced 2026-02-18 21:13:56 +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"
|