11 lines
206 B
Go
11 lines
206 B
Go
//go:build darwin && arm64
|
|
|
|
package detector
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed assets/onnxruntime/darwin-arm64/libonnxruntime.dylib
|
|
var runtimeLibBytes []byte
|
|
|
|
const runtimeLibFileName = "libonnxruntime.dylib"
|