Open matbesancon opened 7 years ago
When running go build, getting: 0xAX/notificator/example/main.go:4:2: local import "../../notificator" in non-local package Is the local import necessary or could an absolute package name be used?
go build
0xAX/notificator/example/main.go:4:2: local import "../../notificator" in non-local package
And a normal go list command would fail too:
go list
go list github.com/0xAX/notificator/...
When running
go build
, getting:0xAX/notificator/example/main.go:4:2: local import "../../notificator" in non-local package
Is the local import necessary or could an absolute package name be used?