go mod使用本地项目
Posted zhja
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go mod使用本地项目相关的知识,希望对你有一定的参考价值。
使用mod模式的时候,怎么使用本地的项目,尤其是在使用微服务开发的时候,需要用到service中的pd文件
首先go mod init之后编辑生成的go.mod文件
使用replace替换掉就可以了
module demo/services/xxxxxx go 1.14 require ( demo/services/micro/xxxxxx v0.0.0-incompatible github.com/golang/protobuf v1.4.0 // indirect github.com/micro/go-micro v1.18.0 // indirect ) replace demo/services/micro/xxxxxx => ../../xxxxxx
以上是关于go mod使用本地项目的主要内容,如果未能解决你的问题,请参考以下文章
解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段