init: basic tools

This commit is contained in:
2025-08-30 22:00:31 +03:00
commit ec5db88f97
13 changed files with 467 additions and 0 deletions

8
Makefile Normal file
View File

@@ -0,0 +1,8 @@
.PHONY: coverage test
coverage:
go test -coverprofile=coverage.out
go tool cover -html=coverage.out
test:
go test -v -cover ./...