2023-01-28 05:37:20 +08:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2020-07-03 13:52:42 +08:00
|
|
|
|
2022-06-07 01:10:39 +08:00
|
|
|
// This file exists just so `go mod tidy` won't remove
|
|
|
|
// tool modules from our go.mod.
|
2020-07-03 13:52:42 +08:00
|
|
|
|
2021-12-16 00:42:25 +08:00
|
|
|
//go:build tools
|
2021-02-20 23:21:11 +08:00
|
|
|
|
2022-06-07 01:10:39 +08:00
|
|
|
package tools
|
2020-07-03 13:52:42 +08:00
|
|
|
|
|
|
|
import (
|
2022-06-07 01:10:39 +08:00
|
|
|
_ "github.com/tailscale/mkctr"
|
2021-02-20 23:21:11 +08:00
|
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
2020-07-03 13:52:42 +08:00
|
|
|
)
|