blob: 58e053c8481abc5dc05236763bf73fd6adb32ab7 [file] [log] [blame]
# Copyright 2011 Google Inc. All Rights Reserved.
"""A configure file."""
config = {}
def GetConfig(key):
try:
return config[key]
except KeyError:
return None
def AddConfig(key, value):
config[key] = value