mirror of https://github.com/waku-org/nwaku.git
refactor(waku-filter): remove wakunode2 waku_filter exports
This commit is contained in:
parent
d16073695b
commit
842cfb3476
|
@ -23,10 +23,11 @@ import libp2p/[switch, # manage transports, a single entry poi
|
||||||
muxers/muxer] # define an interface for stream multiplexing, allowing peers to offer many protocols over a single connection
|
muxers/muxer] # define an interface for stream multiplexing, allowing peers to offer many protocols over a single connection
|
||||||
import ../../waku/v2/protocol/waku_message,
|
import ../../waku/v2/protocol/waku_message,
|
||||||
../../waku/v2/protocol/waku_lightpush,
|
../../waku/v2/protocol/waku_lightpush,
|
||||||
|
../../waku/v2/protocol/waku_filter,
|
||||||
../../waku/v2/protocol/waku_store,
|
../../waku/v2/protocol/waku_store,
|
||||||
../../waku/v2/node/[wakunode2, waku_payload],
|
../../waku/v2/node/[wakunode2, waku_payload],
|
||||||
../../waku/v2/node/dnsdisc/waku_dnsdisc,
|
../../waku/v2/node/dnsdisc/waku_dnsdisc,
|
||||||
../../waku/v2/utils/[peers,time],
|
../../waku/v2/utils/[peers, time],
|
||||||
../../waku/common/utils/nat,
|
../../waku/common/utils/nat,
|
||||||
./config_chat2
|
./config_chat2
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,9 @@ import
|
||||||
libp2p/protocols/pubsub/pubsub,
|
libp2p/protocols/pubsub/pubsub,
|
||||||
libp2p/protocols/pubsub/rpc/message
|
libp2p/protocols/pubsub/rpc/message
|
||||||
import
|
import
|
||||||
|
../../waku/v2/protocol/waku_message,
|
||||||
../../waku/v2/protocol/waku_store,
|
../../waku/v2/protocol/waku_store,
|
||||||
|
../../waku/v2/protocol/waku_filter,
|
||||||
../../waku/v2/node/peer_manager/peer_manager,
|
../../waku/v2/node/peer_manager/peer_manager,
|
||||||
../../waku/v2/node/storage/peer/waku_peer_storage,
|
../../waku/v2/node/storage/peer/waku_peer_storage,
|
||||||
../../waku/v2/node/wakunode2,
|
../../waku/v2/node/wakunode2,
|
||||||
|
|
|
@ -6,7 +6,9 @@ import
|
||||||
json_rpc/rpcserver,
|
json_rpc/rpcserver,
|
||||||
libp2p/[peerinfo, switch]
|
libp2p/[peerinfo, switch]
|
||||||
import
|
import
|
||||||
|
../../protocol/waku_message,
|
||||||
../../protocol/waku_store,
|
../../protocol/waku_store,
|
||||||
|
../../protocol/waku_filter,
|
||||||
../peer_manager/peer_manager,
|
../peer_manager/peer_manager,
|
||||||
../wakunode2,
|
../wakunode2,
|
||||||
./jsonrpc_types
|
./jsonrpc_types
|
||||||
|
|
|
@ -3,7 +3,10 @@
|
||||||
import
|
import
|
||||||
std/[tables,sequtils],
|
std/[tables,sequtils],
|
||||||
chronicles,
|
chronicles,
|
||||||
json_rpc/rpcserver,
|
json_rpc/rpcserver
|
||||||
|
import
|
||||||
|
../../protocol/waku_message,
|
||||||
|
../../protocol/waku_filter,
|
||||||
../wakunode2,
|
../wakunode2,
|
||||||
./jsonrpc_types
|
./jsonrpc_types
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,6 @@ export
|
||||||
builders,
|
builders,
|
||||||
waku_relay, waku_message,
|
waku_relay, waku_message,
|
||||||
waku_swap,
|
waku_swap,
|
||||||
waku_filter,
|
|
||||||
waku_rln_relay_types,
|
waku_rln_relay_types,
|
||||||
wakunode2_types
|
wakunode2_types
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue