# global_state.py _state = {} def set(key, value): _state[key] = value def get(key): return _state.get(key)