go.mod: pin github.com/tailscale/mkctr (try #2)

Signed-off-by: Maisem Ali <maisem@tailscale.com>
This commit is contained in:
Maisem Ali
2022-06-06 10:10:39 -07:00
committed by Maisem Ali
parent 0d972678e7
commit bf2fa7b184
3 changed files with 42 additions and 3 deletions

16
tstest/tools/tools.go Normal file
View File

@@ -0,0 +1,16 @@
// 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
// tool modules from our go.mod.
//go:build tools
// +build tools
package tools
import (
_ "github.com/tailscale/mkctr"
_ "honnef.co/go/tools/cmd/staticcheck"
)