2020-07-03 06:52:42 +01:00
|
|
|
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2022-06-06 18:10:39 +01:00
|
|
|
// This file exists just so `go mod tidy` won't remove
|
|
|
|
// tool modules from our go.mod.
|
2020-07-03 06:52:42 +01:00
|
|
|
|
2021-12-15 16:42:25 +00:00
|
|
|
//go:build tools
|
2021-02-20 15:21:11 +00:00
|
|
|
|
2022-06-06 18:10:39 +01:00
|
|
|
package tools
|
2020-07-03 06:52:42 +01:00
|
|
|
|
|
|
|
import (
|
2022-06-06 18:10:39 +01:00
|
|
|
_ "github.com/tailscale/mkctr"
|
2021-02-20 15:21:11 +00:00
|
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
2020-07-03 06:52:42 +01:00
|
|
|
)
|