From 342e3329e1b7d7d8d7c397a7dc6fd304a882fdfc Mon Sep 17 00:00:00 2001 From: Jonathon Anderson Date: Wed, 17 Jan 2024 21:52:43 -0700 Subject: [PATCH] Fix formatting with `make fmt` Signed-off-by: Jonathon Anderson --- tools.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tools.go b/tools.go index 519c21df..709bd378 100644 --- a/tools.go +++ b/tools.go @@ -1,10 +1,11 @@ +//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" + _ "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" )