Migrate to central appointment database #45

Merged
christian merged 34 commits from sync-calendar into develop 2025-01-20 13:11:20 +00:00
Showing only changes of commit 5577cea351 - Show all commits

View File

@ -0,0 +1,10 @@
_listening = False
def debugger():
global _listening
if not _listening:
import debugpy
debugpy.listen(5678)
debugpy.wait_for_client()
_listening = True