http-boot-server/template/Makefile
2023-07-23 10:49:57 +02:00

10 lines
102 B
Makefile

.PHONY: build test
build:
go build -o build/
test:
go test -v ./...
run: build
./build/template