blob: 45a3d000d232c5709e59e0f39dfa0e8a06066e1f [file] [log] [blame]
yunlian2ab92b12013-02-19 22:34:48 +00001#!/usr/bin/python
2#
3# Copyright 2011 Google Inc. All Rights Reserved.
4
5"""A configure file."""
6config = {}
7
8
9def GetConfig(key):
10 try:
11 return config[key]
12 except KeyError:
13 return None
14
15
16def AddConfig(key, value):
17 config[key] = value