krotik / eliasdb

EliasDB a graph-based database.
Mozilla Public License 2.0
994 stars 49 forks source link

`go mod tidy` error while using embed EliasDB #40

Closed amirmm11 closed 2 years ago

amirmm11 commented 2 years ago
$ go mod init example.com/test
go: creating new go.mod: module example.com/test
$ go mod tidy
go: example.com/test imports
        github.com/krotik/eliasdb/eql: github.com/krotik/eliasdb@v1.2.0: parsing go.mod:
        module declares its path as: devt.de/krotik/eliasdb
                but was required as: github.com/krotik/eliasdb

The only way that I could fix it was by cloning the repo and added go mod edit -replace github.com/krotik/eliasdb=../eliasdb

amirmm11 commented 2 years ago

used go get github.com/krotik/eliasdb@master and the problem is fixed