From 3a433aef4f9bd8df4811166d28ee9b1e86ca0232 Mon Sep 17 00:00:00 2001 From: kanna5 Date: Wed, 24 Dec 2025 13:06:00 +0900 Subject: [PATCH] chore: add makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ecbfafa --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +lint: + golangci-lint run ./... + +.PHONY: lint