15 lines
263 B
Go
Raw Normal View History

//go:build ignore
package grpcconn
import (
"github.com/jhump/protoreflect/desc"
2024-11-29 19:40:12 +03:00
"google.golang.org/protobuf/proto"
)
var protoSets = map[string]*desc.FileDescriptor
func GetMessage(service string, method string) (proto.Message, error) {
return nil, nil
}