First commit

This commit is contained in:
2024-10-21 23:08:52 -04:00
commit 82b33f3c9a
6 changed files with 244 additions and 0 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
.DEFAULT_GOAL := build
.PHONY: fmt vet build
fmt:
go fmt ./...
vet: fmt
go vet ./...
build: vet
go build ./...