mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-13 03:42:35 -06:00
84fb8dcba2
Signed-off-by: Patrick East <east.patrick@gmail.com>
17 lines
445 B
Go
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"
|
|
)
|