Move websocket

This commit is contained in:
Owen Schwartz 2024-12-08 16:13:21 -05:00
parent 0997783b59
commit 516db54c72
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD

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);