Move the entrypoint to cmd/keyfunc (closes #20)
check / check (push) Successful in 16s

main.go moves unchanged to cmd/keyfunc/main.go, where REPO_POLICIES.md puts Go entrypoints, and the Makefile build target builds ./cmd/keyfunc. The binary is still written to ./keyfunc and still carries the stamped version.

Model: opus-4-8 (implementation); fable-5-1 (summary)
This commit was merged in pull request #23.
This commit is contained in:
2026-09-21 09:25:38 +02:00
parent 8aeed7b901
commit 63575ce827
2 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ setup:
@script/setup
build:
go build -trimpath -ldflags "$(LDFLAGS)" -o keyfunc .
go build -trimpath -ldflags "$(LDFLAGS)" -o keyfunc ./cmd/keyfunc
test:
@script/test
View File