Skip to content

Commit 8c4336a

Browse files
committed
Go modules: Track dependencies for cmd/goose main pkg
1 parent 5dc9a26 commit 8c4336a

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

.gitignore

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
*.test
44

55
# Files output by tests
6-
bin
7-
*.db
6+
/bin
7+
/*.db
88

99
# We don't want to switch to Go modules, until we release v3.0.0 or later.
10-
go.mod
11-
go.sum
10+
/go.mod
11+
/go.sum

cmd/goose/go.mod

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module github.com/pressly/goose/cmd/goose
2+
3+
go 1.12
4+
5+
require (
6+
github.com/go-sql-driver/mysql v1.4.1
7+
github.com/lib/pq v1.0.0
8+
github.com/mattn/go-sqlite3 v1.10.0
9+
github.com/pkg/errors v0.8.1
10+
github.com/ziutek/mymysql v1.5.4
11+
)

0 commit comments

Comments
 (0)