Files
team-presence/Makefile
T
2026-07-28 02:04:36 +03:30

11 lines
115 B
Makefile

.PHONY: run test build
run:
go run ./cmd/server
test:
go test ./...
build:
go build -o teammate ./cmd/server