9 lines
116 B
Python
9 lines
116 B
Python
class GlobalData:
|
|
|
|
def __init__(self):
|
|
self.title = ''
|
|
self.cmd = ''
|
|
|
|
|
|
global_data = GlobalData
|