Tracker in eigene Klasse und AppData eingeführt

This commit is contained in:
2025-09-12 11:31:24 +02:00
parent fd673d5e55
commit acbcfac425
22 changed files with 225 additions and 167 deletions

10
appdata.py Normal file
View File

@@ -0,0 +1,10 @@
"""
Generische Applikationsdaten
"""
from tracker import Tracker
class AppData():
def __init__(self):
self.shutdown = False # Globaler Ausschalter
self.track = Tracker('NONE')