Go modules: Track dependencies for cmd/goose main pkg

pull/155/head
Vojtech Vitek 2019-03-05 22:35:57 -05:00
parent 5dc9a26c62
commit 8c4336a9db
2 changed files with 15 additions and 4 deletions

8
.gitignore vendored
View File

@ -3,9 +3,9 @@
*.test
# Files output by tests
bin
*.db
/bin
/*.db
# We don't want to switch to Go modules, until we release v3.0.0 or later.
go.mod
go.sum
/go.mod
/go.sum

11
cmd/goose/go.mod Normal file
View File

@ -0,0 +1,11 @@
module github.com/pressly/goose/cmd/goose
go 1.12
require (
github.com/go-sql-driver/mysql v1.4.1
github.com/lib/pq v1.0.0
github.com/mattn/go-sqlite3 v1.10.0
github.com/pkg/errors v0.8.1
github.com/ziutek/mymysql v1.5.4
)