feat: project scaffold, version command, build

This commit is contained in:
2026-06-21 23:30:44 +01:00
parent 04d3b61bb0
commit afad3bf3f1
5 changed files with 49 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
BINARY := emcli
LDFLAGS := -s -w
.PHONY: build test vet
build:
CGO_ENABLED=0 go build -ldflags "$(LDFLAGS)" -o $(BINARY) ./cmd/emcli
test:
go test ./...
vet:
go vet ./...