Files
app-api/Makefile
T
2026-05-21 15:20:12 +08:00

14 lines
142 B
Makefile

.PHONY: run build test tidy
run:
go run ./cmd/server
build:
go build -o bin/server ./cmd/server
test:
go test ./...
tidy:
go mod tidy