buster/apps/server/src/api/v2/chats/[id]/index.ts

9 lines
122 B
TypeScript

import { Hono } from 'hono';
import GET from './GET';
const app = new Hono();
app.route('/', GET);
export default app;