diff --git a/app/modules/ws2p/lib/WS2PClient.ts b/app/modules/ws2p/lib/WS2PClient.ts index 0882cb5be3c2f5ede13231e8b9655dda2acd14c2..00df5c150aa8b85c13020b1694f4d0e3bbbdcbb9 100644 --- a/app/modules/ws2p/lib/WS2PClient.ts +++ b/app/modules/ws2p/lib/WS2PClient.ts @@ -1,9 +1,9 @@ import {Server} from "../../../../server" import {WS2PConnection, WS2PPubkeyLocalAuth, WS2PPubkeyRemoteAuth} from "./WS2PConnection" -import {WS2PStreamer} from "../../../lib/streams/WS2PStreamer" import {Key} from "../../../lib/common-libs/crypto/keyring" import {WS2PMessageHandler} from "./impl/WS2PMessageHandler" import {WS2PConstants} from "./constants" +import { WS2PStreamer } from "./WS2PStreamer"; export class WS2PClient { diff --git a/app/modules/ws2p/lib/WS2PServer.ts b/app/modules/ws2p/lib/WS2PServer.ts index 13f4cc2115bfd366284970cb2475c4bdcd2fcc08..93a7e8dc948a30995df7e4df77191e39ce28875e 100644 --- a/app/modules/ws2p/lib/WS2PServer.ts +++ b/app/modules/ws2p/lib/WS2PServer.ts @@ -1,11 +1,11 @@ import {Server} from "../../../../server" import {WS2PConnection, WS2PPubkeyLocalAuth, WS2PPubkeyRemoteAuth} from "./WS2PConnection" -import {WS2PStreamer} from "../../../lib/streams/WS2PStreamer" import {Key} from "../../../lib/common-libs/crypto/keyring" import {GlobalFifoPromise} from "../../../service/GlobalFifoPromise" import * as events from "events" import {WS2PConstants} from "./constants" import {WS2PMessageHandler} from "./impl/WS2PMessageHandler" +import { WS2PStreamer } from "./WS2PStreamer"; const WebSocketServer = require('ws').Server