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;