buster/apps/server/src/api/v2/llm/proxy/index.ts

5 lines
111 B
TypeScript

import { Hono } from 'hono';
import { POST } from './POST';
export const proxy = new Hono().route('/', POST);