Update dependencies

This commit is contained in:
stuzer05 committed 2024-08-14 12:27:59 +03:00
1 parent 1eff11b558
commit 88e9502e5c
3 files changed
+14 -2

No files matched your search

+12
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 ./...