- Extract services into services/{frontend,backend,discord-gateway}
- Create packages/shared/ for shared logger, errors, utils, types
- Setup Modular MVC pattern in backend (controller→service→repository)
- Setup event-driven architecture in discord-gateway with Redis pub/sub
- Move Docker files to infra/docker/ with per-service Dockerfiles
- Update docker-compose.yml to use Traefik-only routing (no port exposes)
- Update GitHub Actions deploy workflow for multi-service matrix build
- Fix all import paths and resolve type errors across all services
- All 3 services pass tsc --noEmit clean
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
24 lines
759 B
TypeScript
24 lines
759 B
TypeScript
import type { Router } from "express";
|
|
import express from "express";
|
|
import {
|
|
handleGetDailyTrend,
|
|
handleGetHourlyStats,
|
|
handleGetModerationStats,
|
|
handleGetOverview,
|
|
handleGetTopViolators,
|
|
handleGetUserLeaderboard,
|
|
} from "../analytics.controller.js";
|
|
|
|
export function createAnalyticsRouter(): Router {
|
|
const router = express.Router();
|
|
|
|
router.get("/analytics/overview", handleGetOverview);
|
|
router.get("/analytics/daily-trend", handleGetDailyTrend);
|
|
router.get("/analytics/hourly-stats", handleGetHourlyStats);
|
|
router.get("/analytics/top-violators", handleGetTopViolators);
|
|
router.get("/analytics/user-leaderboard", handleGetUserLeaderboard);
|
|
router.get("/analytics/moderation-stats", handleGetModerationStats);
|
|
|
|
return router;
|
|
}
|