1
0
Fork 0

Migrate to go modules

This commit is contained in:
Gregory Eremin 2019-10-28 19:35:53 +01:00
parent 610336a34e
commit 36a0f216e2
4 changed files with 13 additions and 49 deletions

38
Gopkg.lock generated
View File

@ -1,38 +0,0 @@
# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
[[projects]]
name = "github.com/go-sql-driver/mysql"
packages = ["."]
revision = "72cd26f257d44c1114970e19afddcd812016007e"
version = "v1.4.1"
[[projects]]
name = "github.com/google/go-cmp"
packages = [
"cmp",
"cmp/internal/diff",
"cmp/internal/function",
"cmp/internal/value"
]
revision = "3af367b6b30c263d47e8895973edcca9a49cf029"
version = "v0.2.0"
[[projects]]
branch = "master"
name = "github.com/juju/errors"
packages = ["."]
revision = "a4583d0a56eac4bdd939e38050d0c69abe0a9b41"
[[projects]]
name = "google.golang.org/appengine"
packages = ["cloudsql"]
revision = "4a4468ece617fc8205e99368fa2200e9d1fad421"
version = "v1.3.0"
[solve-meta]
analyzer-name = "dep"
analyzer-version = 1
inputs-digest = "42bc65f49e64cf440ca3379b58b767424c2715b02b5f2f51fb783d84e3bc7283"
solver-name = "gps-cdcl"
solver-version = 1

View File

@ -1,11 +0,0 @@
[[constraint]]
name = "github.com/google/go-cmp"
version = "0.2.0"
[[constraint]]
branch = "master"
name = "github.com/juju/errors"
[prune]
go-tests = true
unused-packages = true

7
go.mod Normal file
View File

@ -0,0 +1,7 @@
module github.com/localhots/bocadillo
require (
github.com/go-sql-driver/mysql v1.4.1
github.com/google/go-cmp v0.3.1
github.com/juju/errors v0.0.0-20190930114154-d42613fe1ab9
)

6
go.sum Normal file
View File

@ -0,0 +1,6 @@
github.com/go-sql-driver/mysql v1.4.1 h1:g24URVg0OFbNUTx9qqY1IRZ9D9z3iPyi5zKhQZpNwpA=
github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w=
github.com/google/go-cmp v0.3.1 h1:Xye71clBPdm5HgqGwUkwhbynsUJZhDbS20FvLhQ2izg=
github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
github.com/juju/errors v0.0.0-20190930114154-d42613fe1ab9 h1:hJix6idebFclqlfZCHE7EUX7uqLCyb70nHNHH1XKGBg=
github.com/juju/errors v0.0.0-20190930114154-d42613fe1ab9/go.mod h1:W54LbzXuIE0boCoNJfwqpmkKJ1O4TCTZMetAt6jGk7Q=