try to fix websockets

This commit is contained in:
Dylan Pizzo
2026-06-11 14:32:55 -04:00
parent f0e522b039
commit 064528b178
4 changed files with 94 additions and 98 deletions
+1 -2
View File
@@ -2,8 +2,7 @@ import echo from "./api/echo.ts";
import getAuthor from "./api/getAuthor.ts";
import getGame from "./api/getGame.ts";
import room from "./api/room.ts";
import webhook from "./api/webhook.ts";
export const routeList = [echo, webhook, getAuthor, room, getGame];
export const routeList = [echo, getAuthor, room, getGame];
export type RouteList = typeof routeList;