Files
carrotpilot/common/ffi_wrapper.py
Vehicle Researcher bd2ed6664a Carrot2-v9
2025-08-03 19:15:56 +09:00

9 lines
113 B
Python

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