add sane exports to libp2p (#517)
This commit is contained in:
parent
5c234ddd37
commit
3213e5d377
20
libp2p.nim
20
libp2p.nim
|
@ -8,10 +8,20 @@
|
||||||
## those terms.
|
## those terms.
|
||||||
|
|
||||||
import
|
import
|
||||||
libp2p/daemon/[daemonapi, transpool],
|
libp2p/[daemon/daemonapi,
|
||||||
libp2p/protobuf/minprotobuf,
|
daemon/transpool,
|
||||||
libp2p/varint
|
protobuf/minprotobuf,
|
||||||
|
varint,
|
||||||
|
switch,
|
||||||
|
peerid,
|
||||||
|
peerinfo,
|
||||||
|
stream/lpstream,
|
||||||
|
stream/bufferstream,
|
||||||
|
stream/connection,
|
||||||
|
multiaddress,
|
||||||
|
crypto/crypto]
|
||||||
|
|
||||||
export
|
export
|
||||||
daemonapi, transpool, minprotobuf, varint
|
daemonapi, transpool, minprotobuf, varint,
|
||||||
|
switch, peerid, peerinfo, connection,
|
||||||
|
multiaddress, crypto, lpstream, bufferstream
|
||||||
|
|
Loading…
Reference in New Issue