feat: initial implementation of qflash gateway

This commit is contained in:
Luxferre
2026-09-05 15:42:07 +03:00
commit d06c025c24
7 changed files with 2215 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# Makefile for qflash (Qwen3.8-Flash-Next OpenAI Proxy Gateway)
# Created by Luxferre in 2026, released into the public domain.
qflash:
go build -trimpath -ldflags="-s -w" -o bin/qflash .
all: qflash
test:
go test -v ./...
clean:
rm -rf bin/
run: qflash
./bin/qflash
.PHONY: all clean qflash run test