X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=globals.py;h=2ca9c433614295cb17517f48cc1a1c8c62801846;hb=6cd5b068127501d2b48e8ac67b7432bffc5fce53;hp=8420ebd9913d5fefb5c1e1161f52657d7ca60cf7;hpb=4b1f3d8a8b278ca6d62f461ea80c8ea21080c301;p=kiosk.git diff --git a/globals.py b/globals.py index 8420ebd..2ca9c43 100644 --- a/globals.py +++ b/globals.py @@ -1,11 +1,14 @@ +#!/usr/bin/env python3 + data = {} + def put(key, value): data[key] = value + def get(key): if key in data: return data[key] else: return None -