add common unit test

This commit is contained in:
Jay
2020-01-14 15:00:01 +00:00
parent 9b9edf08d8
commit ed4ee637ab
4 changed files with 55 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
.PHONY: all
all: clean build
build:
go build -o tcp-proxy -ldflags "-w -s" .
clean:
go clean && rm -rf tcp-proxy
test:
go test -v ./...