This commit is contained in:
18
packages/go/v5/embed_ffi.go
generated
Normal file
18
packages/go/v5/embed_ffi.go
generated
Normal file
@@ -0,0 +1,18 @@
|
||||
//go:build ignore
|
||||
// +build ignore
|
||||
|
||||
package kreuzberg
|
||||
|
||||
import "embed"
|
||||
|
||||
// This file ensures that FFI header files and library artifacts are included
|
||||
// when this module is vendored. The //go:embed directive tells Go to include
|
||||
// the include/ and .lib/ directories when running `go mod vendor`.
|
||||
//
|
||||
// This file itself is not compiled (//go:build ignore), but its directives are
|
||||
// processed by Go's module system to ensure all necessary files are present in
|
||||
// vendored installations.
|
||||
|
||||
//go:embed include/*
|
||||
//go:embed .lib/*
|
||||
var _ embed.FS
|
||||
Reference in New Issue
Block a user