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