Tracker in eigene Klasse und AppData eingeführt
This commit is contained in:
10
appdata.py
Normal file
10
appdata.py
Normal 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')
|
||||
Reference in New Issue
Block a user