11 lines
262 B
Go
11 lines
262 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
// See https://play-with-go.dev/tools-as-dependencies_go119_en/ for an explanation of this file.
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
_ "github.com/pulumi/pulumi/pkg/v3/cmd/pulumi"
|
|
)
|