Cleanup
[kiosk.git] / globals.py
1 data = {}
2
3
4 def put(key, value):
5     data[key] = value
6
7
8 def get(key):
9     if key in data:
10         return data[key]
11     else:
12         return None