Prva verzija mini web serverja (flask). Hvala, Github Copilot.

This commit is contained in:
2026-03-05 18:15:27 +01:00
parent 9e32e58c4c
commit 6ed45d2ebc
13 changed files with 1164 additions and 5 deletions

5
web/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
"""Package for web-related modules."""
from .server import app, set_projector_app, start_server_thread, run_server
__all__ = ["app", "set_projector_app", "start_server_thread", "run_server"]