1# -*- coding: utf-8 -*- 2# Copyright 2011 The ChromiumOS Authors 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5 6"""A configure file.""" 7config = {} 8 9 10def GetConfig(key): 11 return config.get(key) 12 13 14def AddConfig(key, value): 15 config[key] = value 16