From 4a3ae9929f4657a0f2e9ccf393205655895bb501 Mon Sep 17 00:00:00 2001 From: Gab <24553253+gabrix73@users.noreply.github.com> Date: Sat, 8 Mar 2025 14:59:35 +0100 Subject: Add files via upload --- network/__init__.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 network/__init__.py (limited to 'network/__init__.py') 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'] -- cgit v1.2.3