Files
StarPilot/common/ffi_wrapper.py
T
OPGM CI Automated af25ebb9f4 openpilot v0.9.7
2024-05-16 05:57:42 +00:00

9 lines
113 B
Python

import platform
def suffix():
if platform.system() == "Darwin":
return ".dylib"
else:
return ".so"