Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getProtoMessageType (0.27 sec)

  1. pkg/config/schema/resource/schema.go

    	return config.GroupVersionKind{
    		Group:   in.Group,
    		Version: in.Version,
    		Kind:    in.Kind,
    	}
    }
    
    // getProtoMessageType returns the Go lang type of the proto with the specified name.
    func getProtoMessageType(protoMessageName string) reflect.Type {
    	t, err := protoMessageType(protoreflect.FullName(protoMessageName))
    	if err != nil || t == nil {
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top