This commit is contained in:
alantong
2018-12-06 15:50:03 +08:00
parent 6ad265fc0c
commit 121a7d861c
11 changed files with 789 additions and 1 deletions

15
vendor/go-httpheader/Makefile vendored Normal file
View File

@@ -0,0 +1,15 @@
help:
@echo "test run test"
@echo "lint run lint"
.PHONY: test
test:
go test -v -cover -coverprofile cover.out
go tool cover -html=cover.out -o cover.html
.PHONY: lint
lint:
gofmt -s -w .
goimports -w .
golint .
go vet