Implement internal mail skill MVP

This commit is contained in:
赵义仑
2026-06-06 22:28:36 +08:00
commit 097df73495
22 changed files with 4059 additions and 0 deletions

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
.PHONY: test e2e build cross-build clean
test:
go test ./...
e2e:
go test ./internal/e2e -count=1 -v
build:
go build ./cmd/server
cross-build:
mkdir -p dist
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o dist/internal-mail-skill.exe ./cmd/server
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o dist/internal-mail-skill-linux-amd64 ./cmd/server
clean:
rm -rf dist server