Hello I have a module module github.com/foo/bar
.
There is the following structure:
project/
go.mod
lib.go
lib_test.go
folder/
subfolder/
requires_lib.go
requires_lib_test.go
and the file requires_lib.go
has the following header:
package subfolder
import "github.com/foo/bar/lib"
but the file github.com/foo/bar/lib/
is not yet pushed, because its a prototype
When launching tests, it tries to resolve that dependency and obviously fails.
Do I have to update the master branch whenever I want to make a change in this file? Even if its present in the file system and I want to actually use the one in the filesystem
Is there any alternative?
Take into account that is another package in the same module what I want to import.
Thanks.