import { FastifyInstance } from 'fastify'; export async function adminStatsRoutes(app: FastifyInstance): Promise { app.get('/', async () => ({ success: true, data: { totalUsers: 0, activeUsersToday: 0, totalQuestions: 0, totalAnswers: 0, }, error: null, })); }