main
 1test: fmt unit
 2
 3unit:
 4	go test ./test/unit/...
 5
 6integration:
 7	go test ./test/integration/...
 8
 9run:
10	go run main.go
11
12lint:
13	golint ./...
14
15fmt:
16	gofmt -s -w -e ./