This commit is contained in:
Luxferre
2026-09-02 16:19:51 +03:00
commit 11185339a9
6 changed files with 2202 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# Makefile for k3r053n3 (Kimi K3 LLM Gateway)
k3r053n3:
go build -trimpath -ldflags="-s -w" -o bin/k3r053n3 .
test:
go test -v ./...
all: k3r053n3
clean:
rm -rf bin/
.PHONY: all clean k3r053n3 test