mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-14 17:39:25 +08:00
19 lines
218 B
Python
19 lines
218 B
Python
g_current_task = ""
|
|
g_config = None
|
|
|
|
|
|
def gl_init():
|
|
...
|
|
|
|
|
|
def gl_set(k, v):
|
|
globals()[k] = v
|
|
|
|
|
|
def gl_get(k, d=None):
|
|
try:
|
|
return globals()[k]
|
|
except KeyError:
|
|
return d
|
|
|
|
return None |