LLKennedy/httpgrpc

View on GitHub
internal/testservice/service/service.pb.go

Summary

Maintainability
F
4 days
Test Coverage
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
//     protoc-gen-go v1.25.0
//     protoc        v3.10.1
// source: service.proto

package service

import (
    _ "github.com/LLKennedy/protoc-gen-tsjson/tsjsonpb"
    proto "github.com/golang/protobuf/proto"
    protoreflect "google.golang.org/protobuf/reflect/protoreflect"
    protoimpl "google.golang.org/protobuf/runtime/protoimpl"
    reflect "reflect"
    sync "sync"
)

const (
    // Verify that this generated code is sufficiently up-to-date.
    _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    // Verify that runtime/protoimpl is sufficiently up-to-date.
    _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)

// This is a compile-time assertion that a sufficiently up-to-date version
// of the legacy proto package is being used.
const _ = proto.ProtoPackageIsVersion4

type FeedType int32

const (
    FeedType_FEED_TYPE_UNKNOWN FeedType = 0
    FeedType_FEED_TYPE_RED     FeedType = 1
    FeedType_FEED_TYPE_BLUE    FeedType = 2
)

// Enum value maps for FeedType.
var (
    FeedType_name = map[int32]string{
        0: "FEED_TYPE_UNKNOWN",
        1: "FEED_TYPE_RED",
        2: "FEED_TYPE_BLUE",
    }
    FeedType_value = map[string]int32{
        "FEED_TYPE_UNKNOWN": 0,
        "FEED_TYPE_RED":     1,
        "FEED_TYPE_BLUE":    2,
    }
)

func (x FeedType) Enum() *FeedType {
    p := new(FeedType)
    *p = x
    return p
}

func (x FeedType) String() string {
    return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}

func (FeedType) Descriptor() protoreflect.EnumDescriptor {
    return file_service_proto_enumTypes[0].Descriptor()
}

func (FeedType) Type() protoreflect.EnumType {
    return &file_service_proto_enumTypes[0]
}

func (x FeedType) Number() protoreflect.EnumNumber {
    return protoreflect.EnumNumber(x)
}

// Deprecated: Use FeedType.Descriptor instead.
func (FeedType) EnumDescriptor() ([]byte, []int) {
    return file_service_proto_rawDescGZIP(), []int{0}
}

type FeedData struct {
    state         protoimpl.MessageState
    sizeCache     protoimpl.SizeCache
    unknownFields protoimpl.UnknownFields

    Id       string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
    DataType uint64   `protobuf:"varint,2,opt,name=data_type,json=dataType,proto3" json:"data_type,omitempty"`
    RawData  []byte   `protobuf:"bytes,3,opt,name=raw_data,json=rawData,proto3" json:"raw_data,omitempty"`
    Type     FeedType `protobuf:"varint,4,opt,name=type,proto3,enum=service.FeedType" json:"type,omitempty"`
}

func (x *FeedData) Reset() {
    *x = FeedData{}
    if protoimpl.UnsafeEnabled {
        mi := &file_service_proto_msgTypes[0]
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        ms.StoreMessageInfo(mi)
    }
}

func (x *FeedData) String() string {
    return protoimpl.X.MessageStringOf(x)
}

func (*FeedData) ProtoMessage() {}

func (x *FeedData) ProtoReflect() protoreflect.Message {
    mi := &file_service_proto_msgTypes[0]
    if protoimpl.UnsafeEnabled && x != nil {
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        if ms.LoadMessageInfo() == nil {
            ms.StoreMessageInfo(mi)
        }
        return ms
    }
    return mi.MessageOf(x)
}

// Deprecated: Use FeedData.ProtoReflect.Descriptor instead.
func (*FeedData) Descriptor() ([]byte, []int) {
    return file_service_proto_rawDescGZIP(), []int{0}
}

func (x *FeedData) GetId() string {
    if x != nil {
        return x.Id
    }
    return ""
}

func (x *FeedData) GetDataType() uint64 {
    if x != nil {
        return x.DataType
    }
    return 0
}

func (x *FeedData) GetRawData() []byte {
    if x != nil {
        return x.RawData
    }
    return nil
}

func (x *FeedData) GetType() FeedType {
    if x != nil {
        return x.Type
    }
    return FeedType_FEED_TYPE_UNKNOWN
}

type FeedResponse struct {
    state         protoimpl.MessageState
    sizeCache     protoimpl.SizeCache
    unknownFields protoimpl.UnknownFields

    Received int32 `protobuf:"varint,1,opt,name=received,proto3" json:"received,omitempty"`
}

func (x *FeedResponse) Reset() {
    *x = FeedResponse{}
    if protoimpl.UnsafeEnabled {
        mi := &file_service_proto_msgTypes[1]
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        ms.StoreMessageInfo(mi)
    }
}

func (x *FeedResponse) String() string {
    return protoimpl.X.MessageStringOf(x)
}

func (*FeedResponse) ProtoMessage() {}

func (x *FeedResponse) ProtoReflect() protoreflect.Message {
    mi := &file_service_proto_msgTypes[1]
    if protoimpl.UnsafeEnabled && x != nil {
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        if ms.LoadMessageInfo() == nil {
            ms.StoreMessageInfo(mi)
        }
        return ms
    }
    return mi.MessageOf(x)
}

// Deprecated: Use FeedResponse.ProtoReflect.Descriptor instead.
func (*FeedResponse) Descriptor() ([]byte, []int) {
    return file_service_proto_rawDescGZIP(), []int{1}
}

func (x *FeedResponse) GetReceived() int32 {
    if x != nil {
        return x.Received
    }
    return 0
}

type BroadcastRequest struct {
    state         protoimpl.MessageState
    sizeCache     protoimpl.SizeCache
    unknownFields protoimpl.UnknownFields

    Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
}

func (x *BroadcastRequest) Reset() {
    *x = BroadcastRequest{}
    if protoimpl.UnsafeEnabled {
        mi := &file_service_proto_msgTypes[2]
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        ms.StoreMessageInfo(mi)
    }
}

func (x *BroadcastRequest) String() string {
    return protoimpl.X.MessageStringOf(x)
}

func (*BroadcastRequest) ProtoMessage() {}

func (x *BroadcastRequest) ProtoReflect() protoreflect.Message {
    mi := &file_service_proto_msgTypes[2]
    if protoimpl.UnsafeEnabled && x != nil {
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        if ms.LoadMessageInfo() == nil {
            ms.StoreMessageInfo(mi)
        }
        return ms
    }
    return mi.MessageOf(x)
}

// Deprecated: Use BroadcastRequest.ProtoReflect.Descriptor instead.
func (*BroadcastRequest) Descriptor() ([]byte, []int) {
    return file_service_proto_rawDescGZIP(), []int{2}
}

func (x *BroadcastRequest) GetId() string {
    if x != nil {
        return x.Id
    }
    return ""
}

type BroadcastData struct {
    state         protoimpl.MessageState
    sizeCache     protoimpl.SizeCache
    unknownFields protoimpl.UnknownFields

    RawData []byte `protobuf:"bytes,1,opt,name=raw_data,json=rawData,proto3" json:"raw_data,omitempty"`
}

func (x *BroadcastData) Reset() {
    *x = BroadcastData{}
    if protoimpl.UnsafeEnabled {
        mi := &file_service_proto_msgTypes[3]
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        ms.StoreMessageInfo(mi)
    }
}

func (x *BroadcastData) String() string {
    return protoimpl.X.MessageStringOf(x)
}

func (*BroadcastData) ProtoMessage() {}

func (x *BroadcastData) ProtoReflect() protoreflect.Message {
    mi := &file_service_proto_msgTypes[3]
    if protoimpl.UnsafeEnabled && x != nil {
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        if ms.LoadMessageInfo() == nil {
            ms.StoreMessageInfo(mi)
        }
        return ms
    }
    return mi.MessageOf(x)
}

// Deprecated: Use BroadcastData.ProtoReflect.Descriptor instead.
func (*BroadcastData) Descriptor() ([]byte, []int) {
    return file_service_proto_rawDescGZIP(), []int{3}
}

func (x *BroadcastData) GetRawData() []byte {
    if x != nil {
        return x.RawData
    }
    return nil
}

type ConvertInput struct {
    state         protoimpl.MessageState
    sizeCache     protoimpl.SizeCache
    unknownFields protoimpl.UnknownFields

    RawData []byte `protobuf:"bytes,1,opt,name=raw_data,json=rawData,proto3" json:"raw_data,omitempty"`
}

func (x *ConvertInput) Reset() {
    *x = ConvertInput{}
    if protoimpl.UnsafeEnabled {
        mi := &file_service_proto_msgTypes[4]
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        ms.StoreMessageInfo(mi)
    }
}

func (x *ConvertInput) String() string {
    return protoimpl.X.MessageStringOf(x)
}

func (*ConvertInput) ProtoMessage() {}

func (x *ConvertInput) ProtoReflect() protoreflect.Message {
    mi := &file_service_proto_msgTypes[4]
    if protoimpl.UnsafeEnabled && x != nil {
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        if ms.LoadMessageInfo() == nil {
            ms.StoreMessageInfo(mi)
        }
        return ms
    }
    return mi.MessageOf(x)
}

// Deprecated: Use ConvertInput.ProtoReflect.Descriptor instead.
func (*ConvertInput) Descriptor() ([]byte, []int) {
    return file_service_proto_rawDescGZIP(), []int{4}
}

func (x *ConvertInput) GetRawData() []byte {
    if x != nil {
        return x.RawData
    }
    return nil
}

type ConvertOutput struct {
    state         protoimpl.MessageState
    sizeCache     protoimpl.SizeCache
    unknownFields protoimpl.UnknownFields

    ConvertedData string `protobuf:"bytes,1,opt,name=converted_data,json=convertedData,proto3" json:"converted_data,omitempty"`
}

func (x *ConvertOutput) Reset() {
    *x = ConvertOutput{}
    if protoimpl.UnsafeEnabled {
        mi := &file_service_proto_msgTypes[5]
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        ms.StoreMessageInfo(mi)
    }
}

func (x *ConvertOutput) String() string {
    return protoimpl.X.MessageStringOf(x)
}

func (*ConvertOutput) ProtoMessage() {}

func (x *ConvertOutput) ProtoReflect() protoreflect.Message {
    mi := &file_service_proto_msgTypes[5]
    if protoimpl.UnsafeEnabled && x != nil {
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        if ms.LoadMessageInfo() == nil {
            ms.StoreMessageInfo(mi)
        }
        return ms
    }
    return mi.MessageOf(x)
}

// Deprecated: Use ConvertOutput.ProtoReflect.Descriptor instead.
func (*ConvertOutput) Descriptor() ([]byte, []int) {
    return file_service_proto_rawDescGZIP(), []int{5}
}

func (x *ConvertOutput) GetConvertedData() string {
    if x != nil {
        return x.ConvertedData
    }
    return ""
}

type FibonacciRequest struct {
    state         protoimpl.MessageState
    sizeCache     protoimpl.SizeCache
    unknownFields protoimpl.UnknownFields

    // The 1-indexed point in the Fibonacci sequence
    N uint64 `protobuf:"varint,1,opt,name=n,proto3" json:"n,omitempty"`
}

func (x *FibonacciRequest) Reset() {
    *x = FibonacciRequest{}
    if protoimpl.UnsafeEnabled {
        mi := &file_service_proto_msgTypes[6]
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        ms.StoreMessageInfo(mi)
    }
}

func (x *FibonacciRequest) String() string {
    return protoimpl.X.MessageStringOf(x)
}

func (*FibonacciRequest) ProtoMessage() {}

func (x *FibonacciRequest) ProtoReflect() protoreflect.Message {
    mi := &file_service_proto_msgTypes[6]
    if protoimpl.UnsafeEnabled && x != nil {
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        if ms.LoadMessageInfo() == nil {
            ms.StoreMessageInfo(mi)
        }
        return ms
    }
    return mi.MessageOf(x)
}

// Deprecated: Use FibonacciRequest.ProtoReflect.Descriptor instead.
func (*FibonacciRequest) Descriptor() ([]byte, []int) {
    return file_service_proto_rawDescGZIP(), []int{6}
}

func (x *FibonacciRequest) GetN() uint64 {
    if x != nil {
        return x.N
    }
    return 0
}

type FibonacciResponse struct {
    state         protoimpl.MessageState
    sizeCache     protoimpl.SizeCache
    unknownFields protoimpl.UnknownFields

    // The number found in the nth place of the sequence
    Number uint64 `protobuf:"varint,1,opt,name=number,proto3" json:"number,omitempty"`
}

func (x *FibonacciResponse) Reset() {
    *x = FibonacciResponse{}
    if protoimpl.UnsafeEnabled {
        mi := &file_service_proto_msgTypes[7]
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        ms.StoreMessageInfo(mi)
    }
}

func (x *FibonacciResponse) String() string {
    return protoimpl.X.MessageStringOf(x)
}

func (*FibonacciResponse) ProtoMessage() {}

func (x *FibonacciResponse) ProtoReflect() protoreflect.Message {
    mi := &file_service_proto_msgTypes[7]
    if protoimpl.UnsafeEnabled && x != nil {
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        if ms.LoadMessageInfo() == nil {
            ms.StoreMessageInfo(mi)
        }
        return ms
    }
    return mi.MessageOf(x)
}

// Deprecated: Use FibonacciResponse.ProtoReflect.Descriptor instead.
func (*FibonacciResponse) Descriptor() ([]byte, []int) {
    return file_service_proto_rawDescGZIP(), []int{7}
}

func (x *FibonacciResponse) GetNumber() uint64 {
    if x != nil {
        return x.Number
    }
    return 0
}

type RandomRequest struct {
    state         protoimpl.MessageState
    sizeCache     protoimpl.SizeCache
    unknownFields protoimpl.UnknownFields

    // The lowest inclusive integer for the resulting random number
    LowerBound int64 `protobuf:"varint,1,opt,name=lower_bound,json=lowerBound,proto3" json:"lower_bound,omitempty"`
    // The highest inclusive integer for the resulting random number
    UpperBound int64 `protobuf:"varint,2,opt,name=upper_bound,json=upperBound,proto3" json:"upper_bound,omitempty"`
}

func (x *RandomRequest) Reset() {
    *x = RandomRequest{}
    if protoimpl.UnsafeEnabled {
        mi := &file_service_proto_msgTypes[8]
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        ms.StoreMessageInfo(mi)
    }
}

func (x *RandomRequest) String() string {
    return protoimpl.X.MessageStringOf(x)
}

func (*RandomRequest) ProtoMessage() {}

func (x *RandomRequest) ProtoReflect() protoreflect.Message {
    mi := &file_service_proto_msgTypes[8]
    if protoimpl.UnsafeEnabled && x != nil {
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        if ms.LoadMessageInfo() == nil {
            ms.StoreMessageInfo(mi)
        }
        return ms
    }
    return mi.MessageOf(x)
}

// Deprecated: Use RandomRequest.ProtoReflect.Descriptor instead.
func (*RandomRequest) Descriptor() ([]byte, []int) {
    return file_service_proto_rawDescGZIP(), []int{8}
}

func (x *RandomRequest) GetLowerBound() int64 {
    if x != nil {
        return x.LowerBound
    }
    return 0
}

func (x *RandomRequest) GetUpperBound() int64 {
    if x != nil {
        return x.UpperBound
    }
    return 0
}

type RandomResponse struct {
    state         protoimpl.MessageState
    sizeCache     protoimpl.SizeCache
    unknownFields protoimpl.UnknownFields

    // The generated number
    Number int64 `protobuf:"varint,1,opt,name=number,proto3" json:"number,omitempty"`
}

func (x *RandomResponse) Reset() {
    *x = RandomResponse{}
    if protoimpl.UnsafeEnabled {
        mi := &file_service_proto_msgTypes[9]
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        ms.StoreMessageInfo(mi)
    }
}

func (x *RandomResponse) String() string {
    return protoimpl.X.MessageStringOf(x)
}

func (*RandomResponse) ProtoMessage() {}

func (x *RandomResponse) ProtoReflect() protoreflect.Message {
    mi := &file_service_proto_msgTypes[9]
    if protoimpl.UnsafeEnabled && x != nil {
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        if ms.LoadMessageInfo() == nil {
            ms.StoreMessageInfo(mi)
        }
        return ms
    }
    return mi.MessageOf(x)
}

// Deprecated: Use RandomResponse.ProtoReflect.Descriptor instead.
func (*RandomResponse) Descriptor() ([]byte, []int) {
    return file_service_proto_rawDescGZIP(), []int{9}
}

func (x *RandomResponse) GetNumber() int64 {
    if x != nil {
        return x.Number
    }
    return 0
}

type UploadPhotoRequest struct {
    state         protoimpl.MessageState
    sizeCache     protoimpl.SizeCache
    unknownFields protoimpl.UnknownFields

    // The raw bytes of the photo
    Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
}

func (x *UploadPhotoRequest) Reset() {
    *x = UploadPhotoRequest{}
    if protoimpl.UnsafeEnabled {
        mi := &file_service_proto_msgTypes[10]
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        ms.StoreMessageInfo(mi)
    }
}

func (x *UploadPhotoRequest) String() string {
    return protoimpl.X.MessageStringOf(x)
}

func (*UploadPhotoRequest) ProtoMessage() {}

func (x *UploadPhotoRequest) ProtoReflect() protoreflect.Message {
    mi := &file_service_proto_msgTypes[10]
    if protoimpl.UnsafeEnabled && x != nil {
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        if ms.LoadMessageInfo() == nil {
            ms.StoreMessageInfo(mi)
        }
        return ms
    }
    return mi.MessageOf(x)
}

// Deprecated: Use UploadPhotoRequest.ProtoReflect.Descriptor instead.
func (*UploadPhotoRequest) Descriptor() ([]byte, []int) {
    return file_service_proto_rawDescGZIP(), []int{10}
}

func (x *UploadPhotoRequest) GetData() []byte {
    if x != nil {
        return x.Data
    }
    return nil
}

type UploadPhotoResponse struct {
    state         protoimpl.MessageState
    sizeCache     protoimpl.SizeCache
    unknownFields protoimpl.UnknownFields

    // The uuid generated to identify and retreive this photo
    Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
}

func (x *UploadPhotoResponse) Reset() {
    *x = UploadPhotoResponse{}
    if protoimpl.UnsafeEnabled {
        mi := &file_service_proto_msgTypes[11]
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        ms.StoreMessageInfo(mi)
    }
}

func (x *UploadPhotoResponse) String() string {
    return protoimpl.X.MessageStringOf(x)
}

func (*UploadPhotoResponse) ProtoMessage() {}

func (x *UploadPhotoResponse) ProtoReflect() protoreflect.Message {
    mi := &file_service_proto_msgTypes[11]
    if protoimpl.UnsafeEnabled && x != nil {
        ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
        if ms.LoadMessageInfo() == nil {
            ms.StoreMessageInfo(mi)
        }
        return ms
    }
    return mi.MessageOf(x)
}

// Deprecated: Use UploadPhotoResponse.ProtoReflect.Descriptor instead.
func (*UploadPhotoResponse) Descriptor() ([]byte, []int) {
    return file_service_proto_rawDescGZIP(), []int{11}
}

func (x *UploadPhotoResponse) GetUuid() string {
    if x != nil {
        return x.Uuid
    }
    return ""
}

var File_service_proto protoreflect.FileDescriptor

var file_service_proto_rawDesc = []byte{
    0x0a, 0x0d, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
    0x07, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x1a, 0x36, 0x6e, 0x6f, 0x64, 0x65, 0x5f, 0x6d,
    0x6f, 0x64, 0x75, 0x6c, 0x65, 0x73, 0x2f, 0x40, 0x6c, 0x6c, 0x6b, 0x65, 0x6e, 0x6e, 0x65, 0x64,
    0x79, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x74, 0x73, 0x6a,
    0x73, 0x6f, 0x6e, 0x2f, 0x74, 0x73, 0x6a, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
    0x22, 0x79, 0x0a, 0x08, 0x46, 0x65, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02,
    0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1b, 0x0a, 0x09,
    0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
    0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x72, 0x61, 0x77,
    0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x72, 0x61, 0x77,
    0x44, 0x61, 0x74, 0x61, 0x12, 0x25, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01,
    0x28, 0x0e, 0x32, 0x11, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x46, 0x65, 0x65,
    0x64, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x2a, 0x0a, 0x0c, 0x46,
    0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72,
    0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x72,
    0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x22, 0x22, 0x0a, 0x10, 0x42, 0x72, 0x6f, 0x61, 0x64,
    0x63, 0x61, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69,
    0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x2a, 0x0a, 0x0d, 0x42,
    0x72, 0x6f, 0x61, 0x64, 0x63, 0x61, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x19, 0x0a, 0x08,
    0x72, 0x61, 0x77, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07,
    0x72, 0x61, 0x77, 0x44, 0x61, 0x74, 0x61, 0x22, 0x29, 0x0a, 0x0c, 0x43, 0x6f, 0x6e, 0x76, 0x65,
    0x72, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x72, 0x61, 0x77, 0x5f, 0x64,
    0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x72, 0x61, 0x77, 0x44, 0x61,
    0x74, 0x61, 0x22, 0x36, 0x0a, 0x0d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x4f, 0x75, 0x74,
    0x70, 0x75, 0x74, 0x12, 0x25, 0x0a, 0x0e, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x65, 0x64,
    0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e,
    0x76, 0x65, 0x72, 0x74, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x22, 0x20, 0x0a, 0x10, 0x46, 0x69,
    0x62, 0x6f, 0x6e, 0x61, 0x63, 0x63, 0x69, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0c,
    0x0a, 0x01, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x01, 0x6e, 0x22, 0x2b, 0x0a, 0x11,
    0x46, 0x69, 0x62, 0x6f, 0x6e, 0x61, 0x63, 0x63, 0x69, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
    0x65, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
    0x04, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x51, 0x0a, 0x0d, 0x52, 0x61, 0x6e,
    0x64, 0x6f, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x6c, 0x6f,
    0x77, 0x65, 0x72, 0x5f, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
    0x0a, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x42, 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x75,
    0x70, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
    0x52, 0x0a, 0x75, 0x70, 0x70, 0x65, 0x72, 0x42, 0x6f, 0x75, 0x6e, 0x64, 0x22, 0x28, 0x0a, 0x0e,
    0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16,
    0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
    0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x28, 0x0a, 0x12, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64,
    0x50, 0x68, 0x6f, 0x74, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04,
    0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61,
    0x22, 0x29, 0x0a, 0x13, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x50, 0x68, 0x6f, 0x74, 0x6f, 0x52,
    0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18,
    0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x2a, 0x48, 0x0a, 0x08, 0x46,
    0x65, 0x65, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x15, 0x0a, 0x11, 0x46, 0x45, 0x45, 0x44, 0x5f,
    0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x11,
    0x0a, 0x0d, 0x46, 0x45, 0x45, 0x44, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x52, 0x45, 0x44, 0x10,
    0x01, 0x12, 0x12, 0x0a, 0x0e, 0x46, 0x45, 0x45, 0x44, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x42,
    0x4c, 0x55, 0x45, 0x10, 0x02, 0x32, 0x96, 0x03, 0x0a, 0x03, 0x41, 0x70, 0x70, 0x12, 0x44, 0x0a,
    0x09, 0x46, 0x69, 0x62, 0x6f, 0x6e, 0x61, 0x63, 0x63, 0x69, 0x12, 0x19, 0x2e, 0x73, 0x65, 0x72,
    0x76, 0x69, 0x63, 0x65, 0x2e, 0x46, 0x69, 0x62, 0x6f, 0x6e, 0x61, 0x63, 0x63, 0x69, 0x52, 0x65,
    0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e,
    0x46, 0x69, 0x62, 0x6f, 0x6e, 0x61, 0x63, 0x63, 0x69, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
    0x65, 0x22, 0x00, 0x12, 0x3b, 0x0a, 0x06, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x12, 0x16, 0x2e,
    0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x52, 0x65,
    0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e,
    0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
    0x12, 0x4a, 0x0a, 0x0b, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x50, 0x68, 0x6f, 0x74, 0x6f, 0x12,
    0x1b, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64,
    0x50, 0x68, 0x6f, 0x74, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x73,
    0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x50, 0x68, 0x6f,
    0x74, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x34, 0x0a, 0x04,
    0x46, 0x65, 0x65, 0x64, 0x12, 0x11, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x46,
    0x65, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x15, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
    0x65, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
    0x28, 0x01, 0x12, 0x42, 0x0a, 0x09, 0x42, 0x72, 0x6f, 0x61, 0x64, 0x63, 0x61, 0x73, 0x74, 0x12,
    0x19, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x42, 0x72, 0x6f, 0x61, 0x64, 0x63,
    0x61, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x73, 0x65, 0x72,
    0x76, 0x69, 0x63, 0x65, 0x2e, 0x42, 0x72, 0x6f, 0x61, 0x64, 0x63, 0x61, 0x73, 0x74, 0x44, 0x61,
    0x74, 0x61, 0x22, 0x00, 0x30, 0x01, 0x12, 0x46, 0x0a, 0x0f, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72,
    0x74, 0x54, 0x6f, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x15, 0x2e, 0x73, 0x65, 0x72, 0x76,
    0x69, 0x63, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74,
    0x1a, 0x16, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65,
    0x72, 0x74, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x22, 0x00, 0x28, 0x01, 0x30, 0x01, 0x32, 0xe7,
    0x02, 0x0a, 0x0a, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x65, 0x64, 0x41, 0x70, 0x70, 0x12, 0x3e, 0x0a,
    0x09, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x12, 0x16, 0x2e, 0x73, 0x65, 0x72,
    0x76, 0x69, 0x63, 0x65, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65,
    0x73, 0x74, 0x1a, 0x17, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x52, 0x61, 0x6e,
    0x64, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a,
    0x0f, 0x50, 0x6f, 0x73, 0x74, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x50, 0x68, 0x6f, 0x74, 0x6f,
    0x12, 0x1b, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61,
    0x64, 0x50, 0x68, 0x6f, 0x74, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e,
    0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x50, 0x68,
    0x6f, 0x74, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x37, 0x0a,
    0x07, 0x47, 0x65, 0x74, 0x46, 0x65, 0x65, 0x64, 0x12, 0x11, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69,
    0x63, 0x65, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x15, 0x2e, 0x73, 0x65,
    0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
    0x73, 0x65, 0x22, 0x00, 0x28, 0x01, 0x12, 0x45, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x42, 0x72, 0x6f,
    0x61, 0x64, 0x63, 0x61, 0x73, 0x74, 0x12, 0x19, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
    0x2e, 0x42, 0x72, 0x6f, 0x61, 0x64, 0x63, 0x61, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
    0x74, 0x1a, 0x16, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x42, 0x72, 0x6f, 0x61,
    0x64, 0x63, 0x61, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x22, 0x00, 0x30, 0x01, 0x12, 0x49, 0x0a,
    0x12, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x54, 0x6f, 0x53, 0x74, 0x72,
    0x69, 0x6e, 0x67, 0x12, 0x15, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x43, 0x6f,
    0x6e, 0x76, 0x65, 0x72, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0x16, 0x2e, 0x73, 0x65, 0x72,
    0x76, 0x69, 0x63, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x4f, 0x75, 0x74, 0x70,
    0x75, 0x74, 0x22, 0x00, 0x28, 0x01, 0x30, 0x01, 0x42, 0x68, 0x5a, 0x39, 0x67, 0x69, 0x74, 0x68,
    0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4c, 0x4c, 0x4b, 0x65, 0x6e, 0x6e, 0x65, 0x64, 0x79,
    0x2f, 0x6d, 0x65, 0x72, 0x63, 0x75, 0x72, 0x79, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61,
    0x6c, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x73, 0x65,
    0x72, 0x76, 0x69, 0x63, 0x65, 0x82, 0xd9, 0x66, 0x1e, 0x40, 0x6c, 0x6c, 0x6b, 0x65, 0x6e, 0x6e,
    0x65, 0x64, 0x79, 0x2f, 0x6d, 0x65, 0x72, 0x63, 0x75, 0x72, 0x79, 0x2d, 0x74, 0x65, 0x73, 0x74,
    0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x8a, 0xd9, 0x66, 0x07, 0x73, 0x65, 0x72, 0x76, 0x69,
    0x63, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}

var (
    file_service_proto_rawDescOnce sync.Once
    file_service_proto_rawDescData = file_service_proto_rawDesc
)

func file_service_proto_rawDescGZIP() []byte {
    file_service_proto_rawDescOnce.Do(func() {
        file_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_service_proto_rawDescData)
    })
    return file_service_proto_rawDescData
}

var file_service_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
var file_service_proto_msgTypes = make([]protoimpl.MessageInfo, 12)
var file_service_proto_goTypes = []interface{}{
    (FeedType)(0),               // 0: service.FeedType
    (*FeedData)(nil),            // 1: service.FeedData
    (*FeedResponse)(nil),        // 2: service.FeedResponse
    (*BroadcastRequest)(nil),    // 3: service.BroadcastRequest
    (*BroadcastData)(nil),       // 4: service.BroadcastData
    (*ConvertInput)(nil),        // 5: service.ConvertInput
    (*ConvertOutput)(nil),       // 6: service.ConvertOutput
    (*FibonacciRequest)(nil),    // 7: service.FibonacciRequest
    (*FibonacciResponse)(nil),   // 8: service.FibonacciResponse
    (*RandomRequest)(nil),       // 9: service.RandomRequest
    (*RandomResponse)(nil),      // 10: service.RandomResponse
    (*UploadPhotoRequest)(nil),  // 11: service.UploadPhotoRequest
    (*UploadPhotoResponse)(nil), // 12: service.UploadPhotoResponse
}
var file_service_proto_depIdxs = []int32{
    0,  // 0: service.FeedData.type:type_name -> service.FeedType
    7,  // 1: service.App.Fibonacci:input_type -> service.FibonacciRequest
    9,  // 2: service.App.Random:input_type -> service.RandomRequest
    11, // 3: service.App.UploadPhoto:input_type -> service.UploadPhotoRequest
    1,  // 4: service.App.Feed:input_type -> service.FeedData
    3,  // 5: service.App.Broadcast:input_type -> service.BroadcastRequest
    5,  // 6: service.App.ConvertToString:input_type -> service.ConvertInput
    9,  // 7: service.ExposedApp.GetRandom:input_type -> service.RandomRequest
    11, // 8: service.ExposedApp.PostUploadPhoto:input_type -> service.UploadPhotoRequest
    1,  // 9: service.ExposedApp.GetFeed:input_type -> service.FeedData
    3,  // 10: service.ExposedApp.GetBroadcast:input_type -> service.BroadcastRequest
    5,  // 11: service.ExposedApp.GetConvertToString:input_type -> service.ConvertInput
    8,  // 12: service.App.Fibonacci:output_type -> service.FibonacciResponse
    10, // 13: service.App.Random:output_type -> service.RandomResponse
    12, // 14: service.App.UploadPhoto:output_type -> service.UploadPhotoResponse
    2,  // 15: service.App.Feed:output_type -> service.FeedResponse
    4,  // 16: service.App.Broadcast:output_type -> service.BroadcastData
    6,  // 17: service.App.ConvertToString:output_type -> service.ConvertOutput
    10, // 18: service.ExposedApp.GetRandom:output_type -> service.RandomResponse
    12, // 19: service.ExposedApp.PostUploadPhoto:output_type -> service.UploadPhotoResponse
    2,  // 20: service.ExposedApp.GetFeed:output_type -> service.FeedResponse
    4,  // 21: service.ExposedApp.GetBroadcast:output_type -> service.BroadcastData
    6,  // 22: service.ExposedApp.GetConvertToString:output_type -> service.ConvertOutput
    12, // [12:23] is the sub-list for method output_type
    1,  // [1:12] is the sub-list for method input_type
    1,  // [1:1] is the sub-list for extension type_name
    1,  // [1:1] is the sub-list for extension extendee
    0,  // [0:1] is the sub-list for field type_name
}

func init() { file_service_proto_init() }
func file_service_proto_init() {
    if File_service_proto != nil {
        return
    }
    if !protoimpl.UnsafeEnabled {
        file_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
            switch v := v.(*FeedData); i {
            case 0:
                return &v.state
            case 1:
                return &v.sizeCache
            case 2:
                return &v.unknownFields
            default:
                return nil
            }
        }
        file_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
            switch v := v.(*FeedResponse); i {
            case 0:
                return &v.state
            case 1:
                return &v.sizeCache
            case 2:
                return &v.unknownFields
            default:
                return nil
            }
        }
        file_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
            switch v := v.(*BroadcastRequest); i {
            case 0:
                return &v.state
            case 1:
                return &v.sizeCache
            case 2:
                return &v.unknownFields
            default:
                return nil
            }
        }
        file_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
            switch v := v.(*BroadcastData); i {
            case 0:
                return &v.state
            case 1:
                return &v.sizeCache
            case 2:
                return &v.unknownFields
            default:
                return nil
            }
        }
        file_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
            switch v := v.(*ConvertInput); i {
            case 0:
                return &v.state
            case 1:
                return &v.sizeCache
            case 2:
                return &v.unknownFields
            default:
                return nil
            }
        }
        file_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
            switch v := v.(*ConvertOutput); i {
            case 0:
                return &v.state
            case 1:
                return &v.sizeCache
            case 2:
                return &v.unknownFields
            default:
                return nil
            }
        }
        file_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
            switch v := v.(*FibonacciRequest); i {
            case 0:
                return &v.state
            case 1:
                return &v.sizeCache
            case 2:
                return &v.unknownFields
            default:
                return nil
            }
        }
        file_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
            switch v := v.(*FibonacciResponse); i {
            case 0:
                return &v.state
            case 1:
                return &v.sizeCache
            case 2:
                return &v.unknownFields
            default:
                return nil
            }
        }
        file_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
            switch v := v.(*RandomRequest); i {
            case 0:
                return &v.state
            case 1:
                return &v.sizeCache
            case 2:
                return &v.unknownFields
            default:
                return nil
            }
        }
        file_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
            switch v := v.(*RandomResponse); i {
            case 0:
                return &v.state
            case 1:
                return &v.sizeCache
            case 2:
                return &v.unknownFields
            default:
                return nil
            }
        }
        file_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
            switch v := v.(*UploadPhotoRequest); i {
            case 0:
                return &v.state
            case 1:
                return &v.sizeCache
            case 2:
                return &v.unknownFields
            default:
                return nil
            }
        }
        file_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
            switch v := v.(*UploadPhotoResponse); i {
            case 0:
                return &v.state
            case 1:
                return &v.sizeCache
            case 2:
                return &v.unknownFields
            default:
                return nil
            }
        }
    }
    type x struct{}
    out := protoimpl.TypeBuilder{
        File: protoimpl.DescBuilder{
            GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
            RawDescriptor: file_service_proto_rawDesc,
            NumEnums:      1,
            NumMessages:   12,
            NumExtensions: 0,
            NumServices:   2,
        },
        GoTypes:           file_service_proto_goTypes,
        DependencyIndexes: file_service_proto_depIdxs,
        EnumInfos:         file_service_proto_enumTypes,
        MessageInfos:      file_service_proto_msgTypes,
    }.Build()
    File_service_proto = out.File
    file_service_proto_rawDesc = nil
    file_service_proto_goTypes = nil
    file_service_proto_depIdxs = nil
}