mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-21 14:12:57 -06:00
c1f1008723
Signed-off-by: Mikel Olasagasti Uranga <mikel@olasagasti.info> Signed-off-by: James Humphries <james@james-humphries.co.uk> Co-authored-by: Mikel Olasagasti Uranga <mikel@olasagasti.info>
19 lines
434 B
Go
19 lines
434 B
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build tools
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/mitchellh/gox"
|
|
_ "github.com/nishanths/exhaustive"
|
|
_ "go.uber.org/mock/mockgen"
|
|
_ "golang.org/x/tools/cmd/stringer"
|
|
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
|
)
|