blob: 2331416c4472529c528ac748a73772a33510f86c [file] [log] [blame]
# Copyright 2018 The LUCI Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Non-LUCI features.
load('@stdlib//internal/generator.star', _generator='generator')
load('@stdlib//internal/meta.star', _meta='meta')
load('@stdlib//internal/time.star', _time='time')
# Individual LUCI rules.
load('@stdlib//internal/luci/rules/bucket.star', _bucket='bucket')
load('@stdlib//internal/luci/rules/builder.star', _builder='builder')
load('@stdlib//internal/luci/rules/gitiles_poller.star', _gitiles_poller='gitiles_poller')
load('@stdlib//internal/luci/rules/logdog.star', _logdog='logdog')
load('@stdlib//internal/luci/rules/project.star', _project='project')
load('@stdlib//internal/luci/rules/recipe.star', _recipe='recipe')
# LUCI helper modules.
load('@stdlib//internal/luci/lib/acl.star', _acl='acl')
load('@stdlib//internal/luci/lib/scheduler.star', _scheduler='scheduler')
load('@stdlib//internal/luci/lib/swarming.star', _swarming='swarming')
# Register all LUCI config generator callbacks.
load('@stdlib//internal/luci/generators.star', _register='register')
_register()
# Public API.
core = struct(
project = _project,
logdog = _logdog,
bucket = _bucket,
recipe = _recipe,
builder = _builder,
gitiles_poller = _gitiles_poller,
# Advanced stuff.
generator = _generator,
)
acl = _acl
meta = _meta
scheduler = _scheduler
swarming = _swarming
time = _time