在go语言项目中,引入本地包很常见,举个例子。
postgres_exporter 引入本地的pq。下载和运行postgres_exporter
下载postgres数据使用驱动:git clone git@github.com:lib/pq.git
package mainimport (... "github.com/lib/pq"...
查看源码位置
[root@baIDu1 postgres_exporter]# pwd/gopath/postgres_exporter[root@baIDu1 pq]# pwd/src/pq
使用 replace 将远程包替换为本地包服务
[root@baIDu1 postgres_exporter]# vi go.mod replace github.com/lib/pq => /src/pq
打包,应用
make buildexport DATA_SOURCE_name=postgresql://postgres_exporter:password@localhost:5432/postgres?sslmode=disable./postgres_exporter <flags>
总结
以上是内存溢出为你收集整理的go语言引入本地依赖包全部内容,希望文章能够帮你解决go语言引入本地依赖包所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)