blob: 53a7664468d219d06039bb951898c4e9a48a377d [file] [log] [blame]
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from recipe_engine.config import config_item_context, ConfigGroup
from recipe_engine.config import Single
def BaseConfig(BASE_URL, **kwargs):
return ConfigGroup(
base_url = Single(basestring, empty_val=BASE_URL),
auth_token = Single(basestring),
)
config_ctx = config_item_context(BaseConfig)
@config_ctx()
def basic(c):
pass