11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
import { Hono } from 'hono';
|
|
import suggestionsRouter from './suggestions.js';
|
|
import notifyRouter from './notify.js';
|
|
|
|
const app = new Hono();
|
|
|
|
app.route('/suggestions', suggestionsRouter);
|
|
app.route('/notify', notifyRouter);
|
|
|
|
export default app;
|