Files
2026-04-10 12:06:24 +02:00

11 lines
102 B
Makefile

.PHONY: run test lint build
run:
go run ./cmd/api
test:
go test ./...
build:
go build ./cmd/api