mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 10:15:22 +00:00
16 lines
458 B
Go
16 lines
458 B
Go
// Copyright 2022 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// +build tools
|
|
|
|
// This package imports things required by build scripts, to force `go mod` to see them as dependencies
|
|
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
|
|
package hack
|
|
|
|
import (
|
|
// for code generation
|
|
_ "golang.org/x/tools/cmd/stringer"
|
|
// for lint checks
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
)
|