mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-06 09:15:57 +02:00
9 lines
116 B
Python
9 lines
116 B
Python
class GlobalData:
|
|
|
|
def __init__(self):
|
|
self.title = ''
|
|
self.cmd = ''
|
|
|
|
|
|
global_data = GlobalData
|