Initial commit

This commit is contained in:
2025-07-30 19:12:53 +03:00
commit 74cbe1e469
83 changed files with 12567 additions and 0 deletions

25
Makefile Normal file
View File

@@ -0,0 +1,25 @@
.PHONY: test lint run example clean readme config-verify
all: test lint
test:
go test ./...
lint:
golangci-lint run || true
config-verify:
golangci-lint config verify --verbose
run:
go run .
example:
go run . gen --config config.yaml --output-format=md
readme:
go run . gen --config config.yaml --output-format=md
clean:
rm -rf dist/