Skip to content

Commit

Permalink
Merge pull request #80 from chenrui333/go-modules
Browse files Browse the repository at this point in the history
Go modules
  • Loading branch information
JamesClonk committed Aug 18, 2020
2 parents 7fafbab + 24f298a commit de3a23a
Show file tree
Hide file tree
Showing 291 changed files with 903 additions and 54,810 deletions.
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ all: prepare lint vet test build

prepare:
go get -v golang.org/x/lint/golint
go get -v github.com/Masterminds/glide
glide install

build:
go install
go build

lint:
for pkg in $(TEST); do golint $$pkg; done
Expand Down
23 changes: 0 additions & 23 deletions glide.lock

This file was deleted.

19 changes: 0 additions & 19 deletions glide.yaml

This file was deleted.

11 changes: 11 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module github.com/JamesClonk/vultr

go 1.14

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jawher/mow.cli v0.0.0-20150204181009-33e2f99c7bed
github.com/stretchr/testify v1.3.0
golang.org/x/crypto v0.0.0-20160126184038-1f22c0103821
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
)
6 changes: 6 additions & 0 deletions vendor/github.com/stretchr/objx/go.sum → go.sum
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/jawher/mow.cli v0.0.0-20150204181009-33e2f99c7bed h1:3Rhpp6tbKNmzyf2EU1ey3sQ6BD1elk/xlM2Px9uqXbI=
github.com/jawher/mow.cli v0.0.0-20150204181009-33e2f99c7bed/go.mod h1:5hQj2V8g+qYmLUVWqu4Wuja1pI57M83EChYLVZ0sMKk=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
golang.org/x/crypto v0.0.0-20160126184038-1f22c0103821 h1:Ufz3iUGlZbo8uCQ3IddvmNoW0T2XwdZqjVpOrdtyO0c=
golang.org/x/crypto v0.0.0-20160126184038-1f22c0103821/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 h1:SvFZT6jyqRaOeXpc5h/JSfZenJ2O330aBsf7JfSUXmQ=
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
File renamed without changes.
141 changes: 0 additions & 141 deletions vendor/github.com/jawher/mow.cli/args_test.go

This file was deleted.

157 changes: 0 additions & 157 deletions vendor/github.com/jawher/mow.cli/cli_test.go

This file was deleted.

Loading

0 comments on commit de3a23a

Please sign in to comment.