chore: bootstrap agent-notify Go project

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-26 11:17:03 +08:00
commit f13dcd6cae
3 changed files with 46 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
.PHONY: build test install
BINARY := agent-notify
build:
go build -o bin/$(BINARY) ./cmd/agent-notify
test:
go test ./...
install: build
install -m 755 bin/$(BINARY) $(HOME)/.local/bin/$(BINARY)