Move server modules into server/ package

data_model, log_config, network, storage_helpers, we_connect are now
under server/. collect.py stays in the project root and imports via
the server package.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-25 20:16:46 +02:00
co-authored by Claude Sonnet 4.6
parent f0e0c9c6ae
commit 7774f4842e
7 changed files with 3 additions and 5 deletions
+8
View File
@@ -0,0 +1,8 @@
import logging
def setup(verbose: bool) -> None:
logging.basicConfig(
level=logging.DEBUG if verbose else logging.INFO,
format="%(asctime)s %(levelname)s %(message)s",
)