Initial commit of example code for PakGo

This commit is contained in:
stevenhowes
2022-01-13 22:20:08 +00:00
commit 0bf58dba2b
6 changed files with 92 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
.DEFAULT_GOAL := build
fmt:
go mod tidy
go fmt ./...
.PHONY:fmt
lint: fmt
golint ./...
.PHONY:lint
vet: fmt
go vet ./...
.PHONY:vet
build: vet
go build
.PHONY:build