go 1.11 怎么引用本项目的其他包?

windy_ · · 3408 次点击
你的包要位于$GOPATH/src目录下,其中search、matcher均为本地包,如下所示: ``` $GOPATH=/home/xxx/goworkspace/ /home/xxx/goworkspace/src/goproject/tour/example1/search/feed.go /home/xxx/goworkspace/src/goproject/tour/example1/matcher/match.go ``` 可以写成如下 ``` import ( _ "goproject/tour/example1/matcher" "goproject/tour/example1/search" "log" "os" ) ```
#6
更多评论
vendor了解一下……
#1
windy_
君子知命不惧,日日自省
vendor 要在gopath下才能起作用吧,我现在不在gopath下,而且我要引用的是本项目下的比如 controller、service 包
#2