github.com/undoio/delve@v1.9.0/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/undoio/delve/pkg/proc/internal/ebpf/bpf"
    13  	_ "github.com/undoio/delve/pkg/proc/internal/ebpf/bpf/include"
    14  )