The changes necessary to upgrade the kiosk to use python3.7.
[kiosk.git] / globals.py
1 data = {}
2
3 def put(key, value):
4     data[key] = value
5
6 def get(key):
7     if key in data:
8         return data[key]
9     else:
10         return None
11