feat: add placeholder backend #7

Merged
pufereq merged 24 commits from feat/add-placeholder-backend into develop 2025-08-26 17:56:00 +00:00
9 changed files with 268 additions and 108 deletions
Showing only changes of commit b8f5fdc794 - Show all commits

View File

@@ -34,6 +34,9 @@ class BackendServer:
def start_polling(self) -> None:
self.running = True
threading.Thread(
name="BackendServer thread", target=self._poll_loop, daemon=True
).start()
def _poll_loop(self) -> None:
while self.running: