github.com/cnboonhan/delve@v0.0.0-20230908061759-363f2388c2fb/pkg/proc/internal/ebpf/dummy.go (about) 1 //go:build dummy 2 // +build dummy 3 4 // This file is part of a workaround for `go mod vendor` which won't 5 // vendor C files if there are no Go files in the same directory. 6 // 7 // See https://github.com/golang/go/issues/26366 8 9 package ebpf 10 11 import ( 12 _ "github.com/go-delve/delve/pkg/proc/internal/ebpf/bpf" 13 _ "github.com/go-delve/delve/pkg/proc/internal/ebpf/bpf/include" 14 )