feat(Go-Tool): 修改成go mod vendor方式

This commit is contained in:
huangzj
2020-07-08 14:35:54 +08:00
parent adb5f7f78e
commit 606fdb13c6
27 changed files with 4585 additions and 121 deletions
+15
View File
@@ -0,0 +1,15 @@
.PHONY: build test bench vet coverage
build: vet bench
test:
go test -v -cover -race
bench:
go test -v -cover -test.bench=. -test.benchmem
vet:
go vet
coverage:
go test -coverprofile=c.out && go tool cover -html=c.out && rm c.out