rename to light_push, move class to separate file

This commit is contained in:
Sasha 2024-10-01 21:56:27 +02:00
parent 315d82fc6f
commit 23ded77323
No known key found for this signature in database
4 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,7 @@ export {
defaultLibp2p,
createLibp2pAndUpdateOptions
} from "./create/index.js";
export { wakuLightPush } from "./protocols/lightpush/index.js";
export { wakuLightPush } from "./protocols/light_push/index.js";
export { wakuFilter } from "./protocols/filter/index.js";
export { wakuStore } from "./protocols/store/index.js";

View File

@ -0,0 +1 @@
export { wakuLightPush } from "./light_push.js";

View File

@ -17,7 +17,7 @@ import { Protocols } from "@waku/interfaces";
import { Logger } from "@waku/utils";
import { wakuFilter } from "./protocols/filter/index.js";
import { wakuLightPush } from "./protocols/lightpush/index.js";
import { wakuLightPush } from "./protocols/light_push/index.js";
import { wakuStore } from "./protocols/store/index.js";
import { ReliabilityMonitorManager } from "./reliability_monitor/index.js";