mirror of
https://github.com/TECHNOFAB11/zfs-localpv.git
synced 2025-12-12 06:20:11 +01:00
- use minikube v1.26.1 across all github actions workflows - bring all go module dependencies up to date with openebs/lvm-localpv - replace github.com/golang/protobuf with google.golang.org/protobuf - remove go mod vendor Makefile target Signed-off-by: Niladri Halder <niladri.halder26@gmail.com>
24 lines
797 B
Go
24 lines
797 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
/*
|
|
Copyright 2019 The Kubernetes Authors.
|
|
copyright 2020 the kubernetes 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.
|
|
*/
|
|
|
|
// tools package imports things required by build scripts, to force `go mod` to see them as dependencies
|
|
package tools
|
|
|
|
import _ "k8s.io/code-generator"
|