From 4ab982bc52c5db4be5f5f20e2cacd554a9ab2af6 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 11:41:35 +0000 Subject: [PATCH] Fix all __init__.py files - add proper exports --- snip/sync/__init__.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/snip/sync/__init__.py b/snip/sync/__init__.py index 2436538..5bba6e5 100644 --- a/snip/sync/__init__.py +++ b/snip/sync/__init__.py @@ -1 +1,6 @@ -"""Sync module for Snip.""" +"""Sync module for P2P discovery and synchronization.""" + +from .discovery import DiscoveryService +from .protocol import SyncProtocol + +__all__ = ["DiscoveryService", "SyncProtocol"] \ No newline at end of file