feat: auth pkg and file proxy scaffold

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2025-10-19 17:05:15 +00:00
parent c0f852ad35
commit e58caa6b16
14 changed files with 306 additions and 0 deletions

10
apps/file-proxy/index.ts Normal file
View File

@@ -0,0 +1,10 @@
import { Hono } from "hono"
import { handleFileRequest } from "./files"
Bun.serve({
routes: {
"/files/:fileId": {
GET: handleFileRequest,
},
},
})