Move websocket

This commit is contained in:
Owen Schwartz
2024-12-08 16:13:21 -05:00
parent 0997783b59
commit 516db54c72

View File

@@ -37,7 +37,7 @@ export function createApiServer() {
apiServer.use(prefix, authenticated);
// WebSocket routes
apiServer.use(`/ws`, wsRouter);
apiServer.use(prefix, wsRouter);
// Error handling
apiServer.use(notFoundMiddleware);