Skip to content

Commit

Permalink
feat: add go module
Browse files Browse the repository at this point in the history
  • Loading branch information
slaysd committed Nov 19, 2020
1 parent 0ac47e2 commit bd5dde8
Show file tree
Hide file tree
Showing 3 changed files with 340 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ before:
# You may remove this if you don't use go modules.
- go mod download
# you may remove this if you don't need go generate
- go generate ./...
# - go generate ./...
builds:
- env:
- CGO_ENABLED=0
Expand Down
13 changes: 13 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module github.com/slaysd/ju

go 1.15

require (
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator v9.31.0+incompatible
github.com/leodido/go-urn v1.2.0 // indirect
github.com/mitchellh/go-homedir v1.1.0
github.com/spf13/cobra v1.1.1
github.com/spf13/viper v1.7.1
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
)
Loading

0 comments on commit bd5dde8

Please sign in to comment.