feat(scheduling): add notify route and wire up scheduling router

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
kkfluous
2026-04-16 20:23:29 +08:00
parent 460c9906e1
commit 86d5bc8738
3 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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;