.PHONY: build run test clean build: go build -o ollama-proxy ./cmd/server run: go run ./cmd/server test: go test ./... clean: rm -f ollama-proxy