2019-01-15 15:32:05 +01:00
|
|
|
// Copyright 2018 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2021-08-25 16:35:30 +02:00
|
|
|
//go:build tools
|
2019-01-15 15:32:05 +01:00
|
|
|
|
|
|
|
// Package tools tracks dependencies for tools that are required to generate the protobuf code.
|
|
|
|
// See https://github.com/golang/go/issues/25922
|
|
|
|
package tools
|
|
|
|
|
|
|
|
import (
|
2025-03-19 22:19:08 +01:00
|
|
|
_ "github.com/bufbuild/buf/cmd/buf"
|
2025-03-22 16:46:13 +01:00
|
|
|
_ "github.com/daixiang0/gci/cmd/gci"
|
2019-01-15 15:32:05 +01:00
|
|
|
_ "github.com/gogo/protobuf/protoc-gen-gogofast"
|
2025-03-19 16:27:25 +01:00
|
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway"
|
|
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2"
|
2019-01-15 15:32:05 +01:00
|
|
|
)
|