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

12
apps/file-proxy/files.ts Normal file
View File

@@ -0,0 +1,12 @@
import { Hono } from "hono"
const h = new Hono().basePath("/files")
h.get("/:fileId", async (c) => {
const fileId = c.req.param("fileId")
if (!fileId) {
return c.json({ error: "File ID is required" }, 400)
}
})
export { h as files }