Skip to content

Commit

Permalink
fix: import of websocket (#1804)
Browse files Browse the repository at this point in the history
Signed-off-by: Timo Glastra <timo@animo.id>
  • Loading branch information
TimoGlastra committed Mar 28, 2024
1 parent 842efd4 commit 48b31ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/node/src/transport/WsInboundTransport.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type { Agent, InboundTransport, Logger, TransportSession, EncryptedMessage, AgentContext } from '@credo-ts/core'

import { CredoError, TransportService, utils, MessageReceiver } from '@credo-ts/core'
import { WebSocket, Server } from 'ws'
// eslint-disable-next-line import/no-named-as-default
import WebSocket, { Server } from 'ws'

export class WsInboundTransport implements InboundTransport {
private socketServer: Server
Expand Down

0 comments on commit 48b31ae

Please sign in to comment.