cuelang.org/go@v0.10.1/internal/ci/github/repo.cue (about) 1 // Copyright 2022 The CUE Authors 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package github 16 17 // This file exists to provide a single point of importing 18 // the repo package. The pattern of using base and repo 19 // is replicated across a number of CUE repos, and as such 20 // the import path of repo varies between them. This makes 21 // spotting differences and applying changes between the 22 // github/*.cue files noisy. Instead, import the repo package 23 // in a single file, and that keeps the different in import 24 // path down to a single file. 25 26 import repo "cuelang.org/go/internal/ci/repo" 27 28 _repo: repo