Move websocket

This commit is contained in:
Owen Schwartz 2024-12-08 16:13:21 -05:00
parent cebca09a69
commit 1e14caf09d

View file

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