feat: complete phase 0

This commit is contained in:
Blake Ridgway
2026-04-24 19:49:13 -05:00
parent 0c1547e0d5
commit c1d8b17147
5 changed files with 71 additions and 9 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
BIN := bin/heloha-server
CMD := ./cmd/heloha-server
.PHONY: build run test tidy
build:
go build -o $(BIN) $(CMD)
run:
go run $(CMD)
test:
go test ./...
tidy:
go mod tidy