2023-01-27 13:37:20 -08:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2020-07-02 22:52:42 -07:00
|
|
|
|
2021-12-15 08:42:25 -08:00
|
|
|
//go:build tools
|
2021-02-20 16:21:11 +01:00
|
|
|
|
2024-07-10 08:45:46 -07:00
|
|
|
// This file exists just so `go mod tidy` won't remove
|
|
|
|
// tool modules from our go.mod.
|
2022-06-06 10:10:39 -07:00
|
|
|
package tools
|
2020-07-02 22:52:42 -07:00
|
|
|
|
|
|
|
import (
|
2024-07-29 13:50:27 +03:00
|
|
|
_ "github.com/elastic/crd-ref-docs"
|
2022-06-06 10:10:39 -07:00
|
|
|
_ "github.com/tailscale/mkctr"
|
2021-02-20 16:21:11 +01:00
|
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
2023-12-14 13:51:59 +00:00
|
|
|
_ "sigs.k8s.io/controller-tools/cmd/controller-gen"
|
2020-07-02 22:52:42 -07:00
|
|
|
)
|