mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
c5623e0471
Re-instates the functionality that generates CRD API docs, but using a different library as the one we were using earlier seemed to have some issues with its Git history. Also regenerates the docs (make kube-generate-all). Updates tailscale/tailscale#12859 Signed-off-by: Irbe Krumina <irbe@tailscale.com>
16 lines
377 B
Go
16 lines
377 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/elastic/crd-ref-docs"
|
|
_ "github.com/tailscale/mkctr"
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
|
_ "sigs.k8s.io/controller-tools/cmd/controller-gen"
|
|
)
|