当前位置:网站首页>golang 1.18 go work 使用

golang 1.18 go work 使用

2022-06-26 15:22:00 gitxuzan_

https://cloud.tencent.com/developer/article/1970405

go work init ./xxx ./xx
go use ./xxxx

go.work 文件

使用use
go 1.18

use (
	./hello_work
	./gomodtestc
)

使用 replace
go 1.18

use (
	./hello_work
)

replace (
 	github.com/georgehao/gomodtestc => "./gomodtestc"
)
原网站

版权声明
本文为[gitxuzan_]所创,转载请带上原文链接,感谢
https://blog.csdn.net/qq_36517296/article/details/125377525