Skip to content

Commit

Permalink
Anonymously import sqlite package so it could be direct dependency in…
Browse files Browse the repository at this point in the history
… go.mod
  • Loading branch information
cld9x committed Nov 6, 2019
1 parent 71f5c77 commit 8571625
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ require (
github.com/mattn/go-colorable v0.1.1 // indirect
github.com/mattn/go-isatty v0.0.7 // indirect
github.com/mattn/go-runewidth v0.0.4 // indirect
github.com/mattn/go-sqlite3 v1.11.0 // indirect
github.com/mattn/go-sqlite3 v1.11.0
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/mholt/archiver v3.1.1+incompatible
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
Expand Down
1 change: 1 addition & 0 deletions pkg/models/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (

"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/sqlite"
_ "github.com/mattn/go-sqlite3"
"github.com/xbapps/xbvr/pkg/common"
)

Expand Down

0 comments on commit 8571625

Please sign in to comment.