Skip to content

Commit

Permalink
support go modules
Browse files Browse the repository at this point in the history
  • Loading branch information
yedamao committed Mar 29, 2019
1 parent 6ae7df9 commit 4d578ef
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Go parameters
GOCMD=go
GOBUILD=$(GOCMD) build
GOCLEAN=$(GOCMD) clean
GOTEST=$(GOCMD) test
GOLIST=$(GOCMD) list
GOFMT=$(GOCMD) fmt
Expand Down Expand Up @@ -32,5 +31,4 @@ build_linux: clean

.PHONY: clean
clean:
$(GOCLEAN)
rm -rf ./bin/ coverage.txt
5 changes: 5 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module github.com/yedamao/go_cmpp

go 1.12

require github.com/yedamao/encoding v1.0.0
6 changes: 6 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
github.com/yedamao/encoding v0.0.0-20181105072149-582db8bb6476 h1:Xx0jWoYglB2MPryRiklIKUcdKd1ZX/WfOqIqNJAcAQc=
github.com/yedamao/encoding v0.0.0-20181105072149-582db8bb6476/go.mod h1:tOhkRozGhvgW1yPb+Ht2M5nTLg0N00FEMxTeV0NCntQ=
github.com/yedamao/encoding v1.0.0 h1:b72pu/kVC8v+NeTaww8MoZHRasqWQ5/aviVsUmpC7Ys=
github.com/yedamao/encoding v1.0.0/go.mod h1:nUnxSA7GmQ1cvr55BAvfCm+CXkjwCt9Gvc7RMWhSyc0=
golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=

0 comments on commit 4d578ef

Please sign in to comment.