2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2020-09-09 19:13:30 +00:00
|
|
|
|
2022-07-26 16:20:53 +00:00
|
|
|
//go:build for_go_mod_tidy_only
|
|
|
|
|
2024-07-10 15:45:46 +00:00
|
|
|
// Package tooldeps contains dependencies for tools used in the Tailscale repository,
|
|
|
|
// so they're not removed by "go mod tidy".
|
2020-09-09 19:13:30 +00:00
|
|
|
package tooldeps
|
|
|
|
|
|
|
|
import (
|
2023-04-17 22:38:24 +00:00
|
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
2020-09-09 19:13:30 +00:00
|
|
|
_ "github.com/tailscale/depaware/depaware"
|
2022-07-26 16:20:53 +00:00
|
|
|
_ "golang.org/x/tools/cmd/goimports"
|
2020-09-09 19:13:30 +00:00
|
|
|
)
|