Initial commit

This commit is contained in:
2024-09-29 23:32:56 +03:00
parent 7f5d2a1c90
commit 0123ffc572
6 changed files with 285 additions and 3 deletions

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
.PHONY: build fmt lint
build: fmt lint
go build .
fmt:
gofmt -w -r "interface{} -> any" .
go fmt ./...
lint:
go vet ./...
staticcheck ./...