bvinc / go-sqlite-lite

SQLite driver for the Go programming language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

go.mod and branches

Indribell opened this issue · comments

I noticed during the import, that go.mod is missing in your main branch.

require (
github.com/bvinc/go-sqlite-lite/sqlite v0.6.1
github.com/jmoiron/sqlx v1.2.0
)

go: finding github.com/bvinc/go-sqlite-lite/sqlite3 v0.6.1
go: github.com/bvinc/go-sqlite-lite/sqlite3@v0.6.1: unknown revision sqlite3/v0.6.1
go: error loading module requirements

require (
github.com/bvinc/go-sqlite-lite v0.6.1
github.com/jmoiron/sqlx v1.2.0
)

Fails also because your master branch points to your root but go seems to chock on getting a sub directory when there is no clear go.mod present. to indicate its a package.

Note: Go v1.12