mirror of
https://github.com/k8snetworkplumbingwg/whereabouts.git
synced 2025-06-03 06:42:26 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps the other-go-modules group with 2 updates in the / directory: [github.com/containernetworking/plugins](https://github.com/containernetworking/plugins) and [github.com/go-co-op/gocron/v2](https://github.com/go-co-op/gocron). Updates `github.com/containernetworking/plugins` from 1.6.2 to 1.7.1 - [Release notes](https://github.com/containernetworking/plugins/releases) - [Commits](https://github.com/containernetworking/plugins/compare/v1.6.2...v1.7.1) Updates `github.com/go-co-op/gocron/v2` from 2.16.1 to 2.16.2 - [Release notes](https://github.com/go-co-op/gocron/releases) - [Commits](https://github.com/go-co-op/gocron/compare/v2.16.1...v2.16.2) --- updated-dependencies: - dependency-name: github.com/containernetworking/plugins dependency-version: 1.7.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: other-go-modules - dependency-name: github.com/go-co-op/gocron/v2 dependency-version: 2.16.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: other-go-modules ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
748 B
Go
21 lines
748 B
Go
// Copyright 2020 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Package packagesinternal exposes internal-only fields from go/packages.
|
|
package packagesinternal
|
|
|
|
var GetDepsErrors = func(p any) []*PackageError { return nil }
|
|
|
|
type PackageError struct {
|
|
ImportStack []string // shortest path from package named on command line to this one
|
|
Pos string // position of error (if present, file:line:col)
|
|
Err string // the error itself
|
|
}
|
|
|
|
var TypecheckCgo int
|
|
var DepsErrors int // must be set as a LoadMode to call GetDepsErrors
|
|
|
|
var SetModFlag = func(config any, value string) {}
|
|
var SetModFile = func(config any, value string) {}
|