backend/pkg/library/cassandra/Makefile

8 lines
160 B
Makefile
Raw Normal View History

2025-11-17 09:31:58 +00:00
GOFMT ?= gofmt "-s"
GOFILES := $(shell find . -name "*.go")
.PHONY: fmt
fmt: # 格式優化
$(GOFMT) -w $(GOFILES)
goimports -w ./
golangci-lint run