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

5 lines
111 B
TypeScript
Raw Normal View History

2025-10-01 10:49:25 +08:00
import { Hono } from 'hono';
import { POST } from './POST';
export const proxy = new Hono().route('/', POST);