Files
SEEN/backend/Makefile
T

11 lines
102 B
Makefile

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