Files
drive/apps/file-proxy/index.ts
2025-10-19 17:05:15 +00:00

11 lines
157 B
TypeScript

import { Hono } from "hono"
import { handleFileRequest } from "./files"
Bun.serve({
routes: {
"/files/:fileId": {
GET: handleFileRequest,
},
},
})