mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 19:45:35 +00:00
0f57b9340b
Remove fybrik.io/crdoc dependency as it is causing issues for folks attempting to vendor tailscale using GOPROXY=direct. This means that the CRD API docs in ./k8s-operator/api.md will no longer be generated- I am going to look at replacing it with another tool in a follow-up. Updates tailscale/tailscale#12859 Signed-off-by: Irbe Krumina <irbe@tailscale.com>
15 lines
340 B
Go
15 lines
340 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build tools
|
|
|
|
// This file exists just so `go mod tidy` won't remove
|
|
// tool modules from our go.mod.
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/tailscale/mkctr"
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
|
_ "sigs.k8s.io/controller-tools/cmd/controller-gen"
|
|
)
|