mirror of
https://github.com/Dvorinka/SEEN.git
synced 2026-06-04 12:33:02 +00:00
11 lines
102 B
Makefile
11 lines
102 B
Makefile
.PHONY: run test lint build
|
|
|
|
run:
|
|
go run ./cmd/api
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
build:
|
|
go build ./cmd/api
|