diff options
| author | Jeff Carr <[email protected]> | 2025-10-07 07:50:42 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-07 07:50:42 -0500 |
| commit | 7d24a00f52238bf6e6298c1e62d7c2bf11b67edd (patch) | |
| tree | f500652bcae78acc3a97b42548435eff7f3683bd /Makefile | |
day1v0.0.1
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c01ca33 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +# A simple, generic help repo for forge + +build: goimports vet + +install: goimports vet + +vet: + @GO111MODULE=off go vet + @echo this go library package builds okay + +# autofixes your import headers in your golang files +goimports: + goimports -w *.go + +clean: + rm -f *.pb.go + -rm -f go.* + go-mod-clean purge |
