go语言引入本地依赖包

go语言引入本地依赖包,第1张

概述在go语言项目中,引入本地包很常见,举个例子。postgres_exporter引入本地的pq。下载和运行postgres_exporter下载postgres数据使用驱动:gitclonegit@github.com:lib/pq.gitpackagemainimport(..."github.com/lib/pq"...查看源码位置[root@baidu1postgres_ex

在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语言引入本地依赖包所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1244484.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存