I've learned golang a month ago and never have used golang modules, but today I needed it.
Initial problem:
I want to use sciter-sdk for GUI application. So, I decided to use sciter-sdk. But it is a bug in getting library on go v1.15
My solution:
I've read about go modules' replace directive and have written that go.mod for my project
Common problem:
I thought that now everything will be ok, but it isn't.
When i run go build -o ./bin/client ./src/client
it throws me that error:
go: found github.com/sciter-sdk/go-sciter in github.com/sciter-sdk/go-sciter v0.0.0-00010101000000-000000000000
go: found github.com/sciter-sdk/go-sciter/window in github.com/sciter-sdk/go-sciter v0.0.0-00010101000000-000000000000
go: github.com/shumatech/go-sciter@v0.5.1-0.20200928005155-90bed320196c used for two different module paths (github.com/sciter-sdk/go-sciter and github.com/shumatech/go-sciter)
I've found that error in golang issues, but i can't figure out what to do here