initial upl

This commit is contained in:
Luxferre
2026-07-31 09:54:59 +03:00
commit deb1025bda
5 changed files with 1158 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# Makefile for hygate (Hunyuan AI Gateway)
hygate:
go build -trimpath -ldflags="-s -w" -o bin/hygate .
all: hygate
clean:
rm -rf bin/
.PHONY: all clean hygate