Files
drive/apps/file-proxy/index.ts

11 lines
157 B
TypeScript
Raw Normal View History

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