是否有tool
或最简单的方法在go源代码目录中列出所有导入的包?例如:
$ go list_imports a_directory/
github.com/bla/bla
github.com/foo/bar
LOCAL/module/path
答案 0 :(得分:0)
啊找到way ..
go list -f '{{join .Deps "\n"}}' | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}} ' | sort | uniq