mirror of
https://github.com/onepanelio/onepanel.git
synced 2025-09-26 17:51:13 +08:00
15 lines
468 B
Go
15 lines
468 B
Go
// +build tools
|
|
|
|
package corehelper
|
|
|
|
import (
|
|
// this is for finding the package versions
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway"
|
|
// this is for finding the package versions
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2"
|
|
// this is for finding the package versions
|
|
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
|
|
// this is for finding the package versions
|
|
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
|
)
|