11 lines
198 B
Go
11 lines
198 B
Go
//go:build linux && amd64
|
|
|
|
package detector
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed assets/onnxruntime/linux-amd64/libonnxruntime.so
|
|
var runtimeLibBytes []byte
|
|
|
|
const runtimeLibFileName = "libonnxruntime.so"
|