OLD | NEW |
(Empty) | |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import types |
| 6 |
| 7 from recipe_engine.config import config_item_context, ConfigGroup, BadConf |
| 8 from recipe_engine.config import Single |
| 9 from recipe_engine.config_types import Path |
| 10 |
| 11 def BaseConfig(**_kwargs): |
| 12 return ConfigGroup( |
| 13 repo_location=Single(Path) |
| 14 ) |
| 15 |
| 16 config_ctx = config_item_context(BaseConfig) |
| 17 |
| 18 @config_ctx() |
| 19 def basic(c): |
| 20 pass |
| 21 |
| 22 |
OLD | NEW |