当前位置:网站首页>Golang 1.18 go work usage

Golang 1.18 go work usage

2022-06-26 15:40:00 gitxuzan_

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

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

go.work file

 Use use
go 1.18

use (
	./hello_work
	./gomodtestc
)

 Use  replace
go 1.18

use (
	./hello_work
)

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

版权声明
本文为[gitxuzan_]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/177/202206261522024136.html