Go v1.11 (#60)

* Go v1.11
* [Go Modules](https://github.com/golang/go/wiki/Modules)
* [GolangCI-Lint](https://github.com/golangci/golangci-lint)
* [Distroless](https://github.com/GoogleContainerTools/distroless) docker image
This commit is contained in:
Adrian Macneil 2018-12-01 22:28:47 -08:00 committed by GitHub
parent abc544b368
commit da3d9525cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 47 additions and 117 deletions

13
go.mod Normal file
View file

@ -0,0 +1,13 @@
module github.com/amacneil/dbmate
require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/go-sql-driver/mysql v0.0.0-20180113200744-2cc627ac8def
github.com/joho/godotenv v1.2.0
github.com/lib/pq v0.0.0-20180123210206-19c8e9ad0095
github.com/mattn/go-sqlite3 v1.6.0
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/testify v1.2.0
github.com/urfave/cli v1.20.0
google.golang.org/appengine v1.0.0 // indirect
)