I am new to go and working on an example code that I want to localize.
In the original main.go import statement it was:
import (
&quo
Local package is a annoying problem in go.
For some projects in our company we decide not use sub packages at all.
$ glide install$ go get$ go installAll work.
For some projects we use sub packages, and import local packages with full path:
import "xxxx.gitlab.xx/xxgroup/xxproject/xxsubpackage
But if we fork this project, then the subpackages still refer the original one.