diff --git a/connection/__init__.py b/connection/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/network/connection_interface.py b/connection/connection_interface.py similarity index 100% rename from network/connection_interface.py rename to connection/connection_interface.py diff --git a/connection/muxed_connection.py b/connection/muxed_connection.py new file mode 100644 index 00000000..e69de29b diff --git a/connection/muxed_connection_interface.py b/connection/muxed_connection_interface.py new file mode 100644 index 00000000..e69de29b diff --git a/connection/raw_connection.py b/connection/raw_connection.py new file mode 100644 index 00000000..e69de29b diff --git a/connection/raw_connection_interface.py b/connection/raw_connection_interface.py new file mode 100644 index 00000000..e69de29b diff --git a/encrpytion/__init__.py b/encrpytion/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/encrpytion/secio.py b/encrpytion/secio.py new file mode 100644 index 00000000..e69de29b diff --git a/libp2p/__init__.py b/libp2p/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/libp2p/config.py b/libp2p/config.py new file mode 100644 index 00000000..e69de29b diff --git a/libp2p/libp2p.py b/libp2p/libp2p.py new file mode 100644 index 00000000..e69de29b diff --git a/muxer/__init__.py b/muxer/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/muxer/smux_multiplex.py b/muxer/smux_multiplex.py new file mode 100644 index 00000000..e69de29b diff --git a/muxer/stream_muxer_interface.py b/muxer/stream_muxer_interface.py new file mode 100644 index 00000000..e69de29b diff --git a/network/network_interface.py b/network/network_interface.py index 7fb01769..a7b6a697 100644 --- a/network/network_interface.py +++ b/network/network_interface.py @@ -28,3 +28,4 @@ class INetwork(ABC): :param *args: one or many multiaddrs to start listening on :return: True if at least one success """ + pass \ No newline at end of file diff --git a/stream/__init__.py b/stream/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/network/stream.py b/stream/stream.py similarity index 100% rename from network/stream.py rename to stream/stream.py diff --git a/network/stream_interface.py b/stream/stream_interface.py similarity index 100% rename from network/stream_interface.py rename to stream/stream_interface.py diff --git a/transport/__init__.py b/transport/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/network/tcp.py b/transport/tcp.py similarity index 100% rename from network/tcp.py rename to transport/tcp.py diff --git a/network/transport_interface.py b/transport/transport_interface.py similarity index 100% rename from network/transport_interface.py rename to transport/transport_interface.py