summaryrefslogtreecommitdiffstats
path: root/network/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'network/__init__.py')
-rw-r--r--network/__init__.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/network/__init__.py b/network/__init__.py
new file mode 100644
index 0000000..5df22ef
--- /dev/null
+++ b/network/__init__.py
@@ -0,0 +1,9 @@
+"""
+Network package for P2P/Mesh chat application.
+Contains Tor and mesh networking functionality.
+"""
+
+from .tor_manager import TorManager
+from .mesh import MeshNetwork
+
+__all__ = ['TorManager', 'MeshNetwork']