initial commit

This commit is contained in:
2025-06-03 14:01:08 +00:00
commit 6ab9ceed4b
50 changed files with 2253 additions and 0 deletions

17
create_init_files.py Normal file
View File

@@ -0,0 +1,17 @@
import os
folders = [
"server",
"dashboard",
"dashboard/callbacks",
"dashboard/utils",
]
for folder in folders:
path = os.path.join(os.getcwd(), folder, "__init__.py")
if not os.path.exists(path):
with open(path, "w") as f:
pass # Leere Datei anlegen
print(f"Angelegt: {path}")
else:
print(f"Existiert bereits: {path}")