packages: add package github.com/rodaine/table

This commit is contained in:
fatedier
2018-01-17 01:15:34 +08:00
parent 584e098e8e
commit afde0c515c
8 changed files with 543 additions and 2 deletions

9
vendor/github.com/rodaine/table/makefile generated vendored Normal file
View File

@@ -0,0 +1,9 @@
.PHONY: lint
lint:
gofmt -d -s .
golint -set_exit_status ./...
go tool vet -all -shadow -shadowstrict .
.PHONY: test
test:
go test -v -cover -race ./...