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

9 lines
217 B
TypeScript

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