switched to new way :)

This commit is contained in:
Boki 2026-02-13 01:12:11 -05:00
parent b03a2a25f1
commit f22d182c8f
30 changed files with 0 additions and 0 deletions

View file

@ -1,12 +0,0 @@
import { Router } from 'express';
import type { Bot } from '../../bot/Bot.js';
export function statusRoutes(bot: Bot): Router {
const router = Router();
router.get('/status', (_req, res) => {
res.json(bot.getStatus());
});
return router;
}