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