Spaces:
Sleeping
Sleeping
File size: 119 Bytes
f5cf708 |
1 2 3 4 5 6 7 8 9 10 |
# global_state.py
_state = {}
def set(key, value):
_state[key] = value
def get(key):
return _state.get(key)
|