projects
/
kiosk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' of ssh://wwwjail.house/usr/local/git/base/kiosk
[kiosk.git]
/
globals.py
1
#!/usr/bin/env python3
2
3
data = {}
4
5
6
def put(key, value):
7
data[key] = value
8
9
10
def get(key):
11
if key in data:
12
return data[key]
13
else:
14
return None