Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tanbushi
/
api-mapper
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
acd383c
api-mapper
/
global_state.py
tanbushi
modify users, use cf db
f5cf708
9 months ago
raw
Copy download link
history
blame
Safe
119 Bytes
# global_state.py
_state = {}
def
set
(
key, value
):
_state[key] = value
def
get
(
key
):
return
_state.get(key)