Files
tun2socks/internal/module/module.go
T

12 lines
182 B
Go

package module
import (
"runtime/debug"
)
// Info returns project dependencies as []*debug.Module.
func Info() []*debug.Module {
bi, _ := debug.ReadBuildInfo()
return bi.Deps
}