delve/pkg/proc/internal/ebpf/dummy.go
2023-10-03 08:50:11 -07:00

14 lines
355 B
Go

//go:build dummy
// This file is part of a workaround for `go mod vendor` which won't
// vendor C files if there are no Go files in the same directory.
//
// See https://github.com/golang/go/issues/26366
package ebpf
import (
_ "github.com/go-delve/delve/pkg/proc/internal/ebpf/bpf"
_ "github.com/go-delve/delve/pkg/proc/internal/ebpf/bpf/include"
)