refactor(backend): flatten module structure, move routes to .routes.ts files

- Remove empty controllers/, services/, repositories/ subdirectories
- Move routes/index.ts into module.routes.ts (flat naming convention)
- Update imports in http/app.ts

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
MythEclipse
2026-06-01 21:53:08 +07:00
co-authored by Claude Opus 4.6
parent c48a0c5e3b
commit f20c2389a4
6 changed files with 8 additions and 8 deletions
@@ -0,0 +1,14 @@
import type { Router } from "express";
import express from "express";
export function createVoiceRouter(): Router {
const router = express.Router();
// TODO: Implement voice routes
// GET /api/voice/recordings
// GET /api/voice/recordings/:userId
// POST /api/voice/connect
// POST /api/voice/disconnect
return router;
}