Files
warewulf/tools.go
Jonathon Anderson 342e3329e1 Fix formatting with make fmt
Signed-off-by: Jonathon Anderson <janderson@ciq.com>
2024-01-17 22:04:10 -07:00

12 lines
300 B
Go

//go:build tools
// +build tools
package tools
import (
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway"
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2"
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
)