Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
danisharora099 committed Sep 13, 2024
1 parent 58b2c13 commit e845c55
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions packages/sdk/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export {
defaultLibp2p,
createLibp2pAndUpdateOptions
} from "./create/index.js";
export { wakuLightPush } from "./protocols/sender/lightpush/index.js";
export { wakuFilter } from "./protocols/receiver/filter/index.js";
export { wakuStore } from "./protocols/receiver/store/index.js";
export { wakuLightPush } from "./protocols/lightpush/index.js";
export { wakuFilter } from "./protocols/filter/index.js";
export { wakuStore } from "./protocols/store/index.js";

export * as waku from "@waku/core";
export * as utils from "@waku/utils";
Expand Down
6 changes: 3 additions & 3 deletions packages/sdk/src/protocols/lightpush/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import {
} from "@waku/interfaces";
import { ensurePubsubTopicIsConfigured, Logger } from "@waku/utils";

import { BaseProtocolSDK } from "../../base_protocol";
import { ReliabilityMonitorManager } from "../../reliability_monitor_manager";
import { SenderReliabilityMonitor } from "../sender_reliability_monitor";
import { ReliabilityMonitorManager } from "../../reliability_monitor/index.js";
import { SenderReliabilityMonitor } from "../../reliability_monitor/sender.js";
import { BaseProtocolSDK } from "../base_protocol.js";

const log = new Logger("sdk:light-push");

Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/src/protocols/store/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
import { messageHash } from "@waku/message-hash";
import { ensurePubsubTopicIsConfigured, isDefined, Logger } from "@waku/utils";

import { BaseProtocolSDK } from "../../base_protocol.js";
import { BaseProtocolSDK } from "../base_protocol.js";

const DEFAULT_NUM_PEERS = 1;

Expand Down

0 comments on commit e845c55

Please sign in to comment.