mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 03:25:35 +00:00
39f7a61e9c
Importing the non-main package was missing some dependencies that "go mod tidy" would then cleanup. Also added a non-ignore build tag to avoid other tools getting upset about importing a main package. Signed-off-by: Filippo Valsorda <hi@filippo.io>
15 lines
351 B
Go
15 lines
351 B
Go
// 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.
|
|
|
|
// This file exists just so go mod tidy won't remove
|
|
// staticcheck's module from our go.mod.
|
|
|
|
// +build tools
|
|
|
|
package tstest
|
|
|
|
import (
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
|
)
|