Files
releases/tools.go
T
2019-10-22 12:04:31 -07:00

17 lines
445 B
Go

// +build tools
// Copyright 2019 The OPA Authors. All rights reserved.
// Use of this source code is governed by an Apache2
// license that can be found in the LICENSE file.
// package tools imports require tooling so that
// the dependencies are tracked with the OPA module
// and are archived in the vendor directory.
package tools
import (
_ "github.com/mna/pigeon"
_ "golang.org/x/lint/golint"
_ "golang.org/x/tools/cmd/goimports"
)