gitee.com/sasukebo/go-micro/v4@v4.7.1/util/file/proto/file.pb.go (about) 1 // Code generated by protoc-gen-go. DO NOT EDIT. 2 // source: file.proto 3 4 package go_micro_server 5 6 import ( 7 fmt "fmt" 8 proto "github.com/golang/protobuf/proto" 9 math "math" 10 ) 11 12 // Reference imports to suppress errors if they are not otherwise used. 13 var _ = proto.Marshal 14 var _ = fmt.Errorf 15 var _ = math.Inf 16 17 // This is a compile-time assertion to ensure that this generated file 18 // is compatible with the proto package it is being compiled against. 19 // A compilation error at this line likely means your copy of the 20 // proto package needs to be updated. 21 const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package 22 23 type OpenRequest struct { 24 Filename string `protobuf:"bytes,1,opt,name=filename,proto3" json:"filename,omitempty"` 25 Truncate bool `protobuf:"varint,2,opt,name=truncate,proto3" json:"truncate,omitempty"` 26 XXX_NoUnkeyedLiteral struct{} `json:"-"` 27 XXX_unrecognized []byte `json:"-"` 28 XXX_sizecache int32 `json:"-"` 29 } 30 31 func (m *OpenRequest) Reset() { *m = OpenRequest{} } 32 func (m *OpenRequest) String() string { return proto.CompactTextString(m) } 33 func (*OpenRequest) ProtoMessage() {} 34 func (*OpenRequest) Descriptor() ([]byte, []int) { 35 return fileDescriptor_9188e3b7e55e1162, []int{0} 36 } 37 38 func (m *OpenRequest) XXX_Unmarshal(b []byte) error { 39 return xxx_messageInfo_OpenRequest.Unmarshal(m, b) 40 } 41 func (m *OpenRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 42 return xxx_messageInfo_OpenRequest.Marshal(b, m, deterministic) 43 } 44 func (m *OpenRequest) XXX_Merge(src proto.Message) { 45 xxx_messageInfo_OpenRequest.Merge(m, src) 46 } 47 func (m *OpenRequest) XXX_Size() int { 48 return xxx_messageInfo_OpenRequest.Size(m) 49 } 50 func (m *OpenRequest) XXX_DiscardUnknown() { 51 xxx_messageInfo_OpenRequest.DiscardUnknown(m) 52 } 53 54 var xxx_messageInfo_OpenRequest proto.InternalMessageInfo 55 56 func (m *OpenRequest) GetFilename() string { 57 if m != nil { 58 return m.Filename 59 } 60 return "" 61 } 62 63 func (m *OpenRequest) GetTruncate() bool { 64 if m != nil { 65 return m.Truncate 66 } 67 return false 68 } 69 70 type OpenResponse struct { 71 Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` 72 Result bool `protobuf:"varint,2,opt,name=result,proto3" json:"result,omitempty"` 73 XXX_NoUnkeyedLiteral struct{} `json:"-"` 74 XXX_unrecognized []byte `json:"-"` 75 XXX_sizecache int32 `json:"-"` 76 } 77 78 func (m *OpenResponse) Reset() { *m = OpenResponse{} } 79 func (m *OpenResponse) String() string { return proto.CompactTextString(m) } 80 func (*OpenResponse) ProtoMessage() {} 81 func (*OpenResponse) Descriptor() ([]byte, []int) { 82 return fileDescriptor_9188e3b7e55e1162, []int{1} 83 } 84 85 func (m *OpenResponse) XXX_Unmarshal(b []byte) error { 86 return xxx_messageInfo_OpenResponse.Unmarshal(m, b) 87 } 88 func (m *OpenResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 89 return xxx_messageInfo_OpenResponse.Marshal(b, m, deterministic) 90 } 91 func (m *OpenResponse) XXX_Merge(src proto.Message) { 92 xxx_messageInfo_OpenResponse.Merge(m, src) 93 } 94 func (m *OpenResponse) XXX_Size() int { 95 return xxx_messageInfo_OpenResponse.Size(m) 96 } 97 func (m *OpenResponse) XXX_DiscardUnknown() { 98 xxx_messageInfo_OpenResponse.DiscardUnknown(m) 99 } 100 101 var xxx_messageInfo_OpenResponse proto.InternalMessageInfo 102 103 func (m *OpenResponse) GetId() int64 { 104 if m != nil { 105 return m.Id 106 } 107 return 0 108 } 109 110 func (m *OpenResponse) GetResult() bool { 111 if m != nil { 112 return m.Result 113 } 114 return false 115 } 116 117 type CloseRequest struct { 118 Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` 119 XXX_NoUnkeyedLiteral struct{} `json:"-"` 120 XXX_unrecognized []byte `json:"-"` 121 XXX_sizecache int32 `json:"-"` 122 } 123 124 func (m *CloseRequest) Reset() { *m = CloseRequest{} } 125 func (m *CloseRequest) String() string { return proto.CompactTextString(m) } 126 func (*CloseRequest) ProtoMessage() {} 127 func (*CloseRequest) Descriptor() ([]byte, []int) { 128 return fileDescriptor_9188e3b7e55e1162, []int{2} 129 } 130 131 func (m *CloseRequest) XXX_Unmarshal(b []byte) error { 132 return xxx_messageInfo_CloseRequest.Unmarshal(m, b) 133 } 134 func (m *CloseRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 135 return xxx_messageInfo_CloseRequest.Marshal(b, m, deterministic) 136 } 137 func (m *CloseRequest) XXX_Merge(src proto.Message) { 138 xxx_messageInfo_CloseRequest.Merge(m, src) 139 } 140 func (m *CloseRequest) XXX_Size() int { 141 return xxx_messageInfo_CloseRequest.Size(m) 142 } 143 func (m *CloseRequest) XXX_DiscardUnknown() { 144 xxx_messageInfo_CloseRequest.DiscardUnknown(m) 145 } 146 147 var xxx_messageInfo_CloseRequest proto.InternalMessageInfo 148 149 func (m *CloseRequest) GetId() int64 { 150 if m != nil { 151 return m.Id 152 } 153 return 0 154 } 155 156 type CloseResponse struct { 157 XXX_NoUnkeyedLiteral struct{} `json:"-"` 158 XXX_unrecognized []byte `json:"-"` 159 XXX_sizecache int32 `json:"-"` 160 } 161 162 func (m *CloseResponse) Reset() { *m = CloseResponse{} } 163 func (m *CloseResponse) String() string { return proto.CompactTextString(m) } 164 func (*CloseResponse) ProtoMessage() {} 165 func (*CloseResponse) Descriptor() ([]byte, []int) { 166 return fileDescriptor_9188e3b7e55e1162, []int{3} 167 } 168 169 func (m *CloseResponse) XXX_Unmarshal(b []byte) error { 170 return xxx_messageInfo_CloseResponse.Unmarshal(m, b) 171 } 172 func (m *CloseResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 173 return xxx_messageInfo_CloseResponse.Marshal(b, m, deterministic) 174 } 175 func (m *CloseResponse) XXX_Merge(src proto.Message) { 176 xxx_messageInfo_CloseResponse.Merge(m, src) 177 } 178 func (m *CloseResponse) XXX_Size() int { 179 return xxx_messageInfo_CloseResponse.Size(m) 180 } 181 func (m *CloseResponse) XXX_DiscardUnknown() { 182 xxx_messageInfo_CloseResponse.DiscardUnknown(m) 183 } 184 185 var xxx_messageInfo_CloseResponse proto.InternalMessageInfo 186 187 type StatRequest struct { 188 Filename string `protobuf:"bytes,1,opt,name=filename,proto3" json:"filename,omitempty"` 189 XXX_NoUnkeyedLiteral struct{} `json:"-"` 190 XXX_unrecognized []byte `json:"-"` 191 XXX_sizecache int32 `json:"-"` 192 } 193 194 func (m *StatRequest) Reset() { *m = StatRequest{} } 195 func (m *StatRequest) String() string { return proto.CompactTextString(m) } 196 func (*StatRequest) ProtoMessage() {} 197 func (*StatRequest) Descriptor() ([]byte, []int) { 198 return fileDescriptor_9188e3b7e55e1162, []int{4} 199 } 200 201 func (m *StatRequest) XXX_Unmarshal(b []byte) error { 202 return xxx_messageInfo_StatRequest.Unmarshal(m, b) 203 } 204 func (m *StatRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 205 return xxx_messageInfo_StatRequest.Marshal(b, m, deterministic) 206 } 207 func (m *StatRequest) XXX_Merge(src proto.Message) { 208 xxx_messageInfo_StatRequest.Merge(m, src) 209 } 210 func (m *StatRequest) XXX_Size() int { 211 return xxx_messageInfo_StatRequest.Size(m) 212 } 213 func (m *StatRequest) XXX_DiscardUnknown() { 214 xxx_messageInfo_StatRequest.DiscardUnknown(m) 215 } 216 217 var xxx_messageInfo_StatRequest proto.InternalMessageInfo 218 219 func (m *StatRequest) GetFilename() string { 220 if m != nil { 221 return m.Filename 222 } 223 return "" 224 } 225 226 type StatResponse struct { 227 Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` 228 Size int64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"` 229 LastModified int64 `protobuf:"varint,3,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"` 230 XXX_NoUnkeyedLiteral struct{} `json:"-"` 231 XXX_unrecognized []byte `json:"-"` 232 XXX_sizecache int32 `json:"-"` 233 } 234 235 func (m *StatResponse) Reset() { *m = StatResponse{} } 236 func (m *StatResponse) String() string { return proto.CompactTextString(m) } 237 func (*StatResponse) ProtoMessage() {} 238 func (*StatResponse) Descriptor() ([]byte, []int) { 239 return fileDescriptor_9188e3b7e55e1162, []int{5} 240 } 241 242 func (m *StatResponse) XXX_Unmarshal(b []byte) error { 243 return xxx_messageInfo_StatResponse.Unmarshal(m, b) 244 } 245 func (m *StatResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 246 return xxx_messageInfo_StatResponse.Marshal(b, m, deterministic) 247 } 248 func (m *StatResponse) XXX_Merge(src proto.Message) { 249 xxx_messageInfo_StatResponse.Merge(m, src) 250 } 251 func (m *StatResponse) XXX_Size() int { 252 return xxx_messageInfo_StatResponse.Size(m) 253 } 254 func (m *StatResponse) XXX_DiscardUnknown() { 255 xxx_messageInfo_StatResponse.DiscardUnknown(m) 256 } 257 258 var xxx_messageInfo_StatResponse proto.InternalMessageInfo 259 260 func (m *StatResponse) GetType() string { 261 if m != nil { 262 return m.Type 263 } 264 return "" 265 } 266 267 func (m *StatResponse) GetSize() int64 { 268 if m != nil { 269 return m.Size 270 } 271 return 0 272 } 273 274 func (m *StatResponse) GetLastModified() int64 { 275 if m != nil { 276 return m.LastModified 277 } 278 return 0 279 } 280 281 type ReadRequest struct { 282 Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` 283 Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"` 284 Size int64 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"` 285 XXX_NoUnkeyedLiteral struct{} `json:"-"` 286 XXX_unrecognized []byte `json:"-"` 287 XXX_sizecache int32 `json:"-"` 288 } 289 290 func (m *ReadRequest) Reset() { *m = ReadRequest{} } 291 func (m *ReadRequest) String() string { return proto.CompactTextString(m) } 292 func (*ReadRequest) ProtoMessage() {} 293 func (*ReadRequest) Descriptor() ([]byte, []int) { 294 return fileDescriptor_9188e3b7e55e1162, []int{6} 295 } 296 297 func (m *ReadRequest) XXX_Unmarshal(b []byte) error { 298 return xxx_messageInfo_ReadRequest.Unmarshal(m, b) 299 } 300 func (m *ReadRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 301 return xxx_messageInfo_ReadRequest.Marshal(b, m, deterministic) 302 } 303 func (m *ReadRequest) XXX_Merge(src proto.Message) { 304 xxx_messageInfo_ReadRequest.Merge(m, src) 305 } 306 func (m *ReadRequest) XXX_Size() int { 307 return xxx_messageInfo_ReadRequest.Size(m) 308 } 309 func (m *ReadRequest) XXX_DiscardUnknown() { 310 xxx_messageInfo_ReadRequest.DiscardUnknown(m) 311 } 312 313 var xxx_messageInfo_ReadRequest proto.InternalMessageInfo 314 315 func (m *ReadRequest) GetId() int64 { 316 if m != nil { 317 return m.Id 318 } 319 return 0 320 } 321 322 func (m *ReadRequest) GetOffset() int64 { 323 if m != nil { 324 return m.Offset 325 } 326 return 0 327 } 328 329 func (m *ReadRequest) GetSize() int64 { 330 if m != nil { 331 return m.Size 332 } 333 return 0 334 } 335 336 type ReadResponse struct { 337 Size int64 `protobuf:"varint,1,opt,name=size,proto3" json:"size,omitempty"` 338 Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` 339 Eof bool `protobuf:"varint,3,opt,name=eof,proto3" json:"eof,omitempty"` 340 XXX_NoUnkeyedLiteral struct{} `json:"-"` 341 XXX_unrecognized []byte `json:"-"` 342 XXX_sizecache int32 `json:"-"` 343 } 344 345 func (m *ReadResponse) Reset() { *m = ReadResponse{} } 346 func (m *ReadResponse) String() string { return proto.CompactTextString(m) } 347 func (*ReadResponse) ProtoMessage() {} 348 func (*ReadResponse) Descriptor() ([]byte, []int) { 349 return fileDescriptor_9188e3b7e55e1162, []int{7} 350 } 351 352 func (m *ReadResponse) XXX_Unmarshal(b []byte) error { 353 return xxx_messageInfo_ReadResponse.Unmarshal(m, b) 354 } 355 func (m *ReadResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 356 return xxx_messageInfo_ReadResponse.Marshal(b, m, deterministic) 357 } 358 func (m *ReadResponse) XXX_Merge(src proto.Message) { 359 xxx_messageInfo_ReadResponse.Merge(m, src) 360 } 361 func (m *ReadResponse) XXX_Size() int { 362 return xxx_messageInfo_ReadResponse.Size(m) 363 } 364 func (m *ReadResponse) XXX_DiscardUnknown() { 365 xxx_messageInfo_ReadResponse.DiscardUnknown(m) 366 } 367 368 var xxx_messageInfo_ReadResponse proto.InternalMessageInfo 369 370 func (m *ReadResponse) GetSize() int64 { 371 if m != nil { 372 return m.Size 373 } 374 return 0 375 } 376 377 func (m *ReadResponse) GetData() []byte { 378 if m != nil { 379 return m.Data 380 } 381 return nil 382 } 383 384 func (m *ReadResponse) GetEof() bool { 385 if m != nil { 386 return m.Eof 387 } 388 return false 389 } 390 391 type GetRequest struct { 392 Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` 393 BlockId int64 `protobuf:"varint,2,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"` 394 XXX_NoUnkeyedLiteral struct{} `json:"-"` 395 XXX_unrecognized []byte `json:"-"` 396 XXX_sizecache int32 `json:"-"` 397 } 398 399 func (m *GetRequest) Reset() { *m = GetRequest{} } 400 func (m *GetRequest) String() string { return proto.CompactTextString(m) } 401 func (*GetRequest) ProtoMessage() {} 402 func (*GetRequest) Descriptor() ([]byte, []int) { 403 return fileDescriptor_9188e3b7e55e1162, []int{8} 404 } 405 406 func (m *GetRequest) XXX_Unmarshal(b []byte) error { 407 return xxx_messageInfo_GetRequest.Unmarshal(m, b) 408 } 409 func (m *GetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 410 return xxx_messageInfo_GetRequest.Marshal(b, m, deterministic) 411 } 412 func (m *GetRequest) XXX_Merge(src proto.Message) { 413 xxx_messageInfo_GetRequest.Merge(m, src) 414 } 415 func (m *GetRequest) XXX_Size() int { 416 return xxx_messageInfo_GetRequest.Size(m) 417 } 418 func (m *GetRequest) XXX_DiscardUnknown() { 419 xxx_messageInfo_GetRequest.DiscardUnknown(m) 420 } 421 422 var xxx_messageInfo_GetRequest proto.InternalMessageInfo 423 424 func (m *GetRequest) GetId() int64 { 425 if m != nil { 426 return m.Id 427 } 428 return 0 429 } 430 431 func (m *GetRequest) GetBlockId() int64 { 432 if m != nil { 433 return m.BlockId 434 } 435 return 0 436 } 437 438 type GetResponse struct { 439 BlockId int64 `protobuf:"varint,1,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"` 440 Size int64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"` 441 Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` 442 XXX_NoUnkeyedLiteral struct{} `json:"-"` 443 XXX_unrecognized []byte `json:"-"` 444 XXX_sizecache int32 `json:"-"` 445 } 446 447 func (m *GetResponse) Reset() { *m = GetResponse{} } 448 func (m *GetResponse) String() string { return proto.CompactTextString(m) } 449 func (*GetResponse) ProtoMessage() {} 450 func (*GetResponse) Descriptor() ([]byte, []int) { 451 return fileDescriptor_9188e3b7e55e1162, []int{9} 452 } 453 454 func (m *GetResponse) XXX_Unmarshal(b []byte) error { 455 return xxx_messageInfo_GetResponse.Unmarshal(m, b) 456 } 457 func (m *GetResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 458 return xxx_messageInfo_GetResponse.Marshal(b, m, deterministic) 459 } 460 func (m *GetResponse) XXX_Merge(src proto.Message) { 461 xxx_messageInfo_GetResponse.Merge(m, src) 462 } 463 func (m *GetResponse) XXX_Size() int { 464 return xxx_messageInfo_GetResponse.Size(m) 465 } 466 func (m *GetResponse) XXX_DiscardUnknown() { 467 xxx_messageInfo_GetResponse.DiscardUnknown(m) 468 } 469 470 var xxx_messageInfo_GetResponse proto.InternalMessageInfo 471 472 func (m *GetResponse) GetBlockId() int64 { 473 if m != nil { 474 return m.BlockId 475 } 476 return 0 477 } 478 479 func (m *GetResponse) GetSize() int64 { 480 if m != nil { 481 return m.Size 482 } 483 return 0 484 } 485 486 func (m *GetResponse) GetData() []byte { 487 if m != nil { 488 return m.Data 489 } 490 return nil 491 } 492 493 type WriteRequest struct { 494 Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` 495 Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"` 496 Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` 497 XXX_NoUnkeyedLiteral struct{} `json:"-"` 498 XXX_unrecognized []byte `json:"-"` 499 XXX_sizecache int32 `json:"-"` 500 } 501 502 func (m *WriteRequest) Reset() { *m = WriteRequest{} } 503 func (m *WriteRequest) String() string { return proto.CompactTextString(m) } 504 func (*WriteRequest) ProtoMessage() {} 505 func (*WriteRequest) Descriptor() ([]byte, []int) { 506 return fileDescriptor_9188e3b7e55e1162, []int{10} 507 } 508 509 func (m *WriteRequest) XXX_Unmarshal(b []byte) error { 510 return xxx_messageInfo_WriteRequest.Unmarshal(m, b) 511 } 512 func (m *WriteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 513 return xxx_messageInfo_WriteRequest.Marshal(b, m, deterministic) 514 } 515 func (m *WriteRequest) XXX_Merge(src proto.Message) { 516 xxx_messageInfo_WriteRequest.Merge(m, src) 517 } 518 func (m *WriteRequest) XXX_Size() int { 519 return xxx_messageInfo_WriteRequest.Size(m) 520 } 521 func (m *WriteRequest) XXX_DiscardUnknown() { 522 xxx_messageInfo_WriteRequest.DiscardUnknown(m) 523 } 524 525 var xxx_messageInfo_WriteRequest proto.InternalMessageInfo 526 527 func (m *WriteRequest) GetId() int64 { 528 if m != nil { 529 return m.Id 530 } 531 return 0 532 } 533 534 func (m *WriteRequest) GetOffset() int64 { 535 if m != nil { 536 return m.Offset 537 } 538 return 0 539 } 540 541 func (m *WriteRequest) GetData() []byte { 542 if m != nil { 543 return m.Data 544 } 545 return nil 546 } 547 548 type WriteResponse struct { 549 XXX_NoUnkeyedLiteral struct{} `json:"-"` 550 XXX_unrecognized []byte `json:"-"` 551 XXX_sizecache int32 `json:"-"` 552 } 553 554 func (m *WriteResponse) Reset() { *m = WriteResponse{} } 555 func (m *WriteResponse) String() string { return proto.CompactTextString(m) } 556 func (*WriteResponse) ProtoMessage() {} 557 func (*WriteResponse) Descriptor() ([]byte, []int) { 558 return fileDescriptor_9188e3b7e55e1162, []int{11} 559 } 560 561 func (m *WriteResponse) XXX_Unmarshal(b []byte) error { 562 return xxx_messageInfo_WriteResponse.Unmarshal(m, b) 563 } 564 func (m *WriteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 565 return xxx_messageInfo_WriteResponse.Marshal(b, m, deterministic) 566 } 567 func (m *WriteResponse) XXX_Merge(src proto.Message) { 568 xxx_messageInfo_WriteResponse.Merge(m, src) 569 } 570 func (m *WriteResponse) XXX_Size() int { 571 return xxx_messageInfo_WriteResponse.Size(m) 572 } 573 func (m *WriteResponse) XXX_DiscardUnknown() { 574 xxx_messageInfo_WriteResponse.DiscardUnknown(m) 575 } 576 577 var xxx_messageInfo_WriteResponse proto.InternalMessageInfo 578 579 func init() { 580 proto.RegisterType((*OpenRequest)(nil), "go.micro.server.OpenRequest") 581 proto.RegisterType((*OpenResponse)(nil), "go.micro.server.OpenResponse") 582 proto.RegisterType((*CloseRequest)(nil), "go.micro.server.CloseRequest") 583 proto.RegisterType((*CloseResponse)(nil), "go.micro.server.CloseResponse") 584 proto.RegisterType((*StatRequest)(nil), "go.micro.server.StatRequest") 585 proto.RegisterType((*StatResponse)(nil), "go.micro.server.StatResponse") 586 proto.RegisterType((*ReadRequest)(nil), "go.micro.server.ReadRequest") 587 proto.RegisterType((*ReadResponse)(nil), "go.micro.server.ReadResponse") 588 proto.RegisterType((*GetRequest)(nil), "go.micro.server.GetRequest") 589 proto.RegisterType((*GetResponse)(nil), "go.micro.server.GetResponse") 590 proto.RegisterType((*WriteRequest)(nil), "go.micro.server.WriteRequest") 591 proto.RegisterType((*WriteResponse)(nil), "go.micro.server.WriteResponse") 592 } 593 594 func init() { proto.RegisterFile("file.proto", fileDescriptor_9188e3b7e55e1162) } 595 596 var fileDescriptor_9188e3b7e55e1162 = []byte{ 597 // 437 bytes of a gzipped FileDescriptorProto 598 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xcd, 0x8e, 0xd3, 0x30, 599 0x14, 0x85, 0x9b, 0x1f, 0x86, 0x70, 0x93, 0x52, 0xe4, 0x05, 0x2a, 0x15, 0x8c, 0x46, 0x66, 0x33, 600 0x6c, 0xb2, 0x00, 0x09, 0x1e, 0x00, 0x15, 0x5a, 0x24, 0x04, 0x32, 0x0b, 0x16, 0x2c, 0xaa, 0xb4, 601 0xbe, 0x41, 0x16, 0x69, 0x1c, 0x62, 0x17, 0x09, 0x5e, 0x9a, 0x57, 0x40, 0x76, 0xdc, 0xd6, 0x6d, 602 0x13, 0x09, 0xcd, 0xce, 0xd7, 0xf7, 0xf8, 0xf3, 0xb1, 0x73, 0x1c, 0x80, 0x52, 0x54, 0x98, 0x37, 603 0xad, 0xd4, 0x92, 0x4c, 0xbe, 0xcb, 0x7c, 0x2b, 0x36, 0xad, 0xcc, 0x15, 0xb6, 0xbf, 0xb0, 0xa5, 604 0x73, 0x48, 0x3f, 0x35, 0x58, 0x33, 0xfc, 0xb9, 0x43, 0xa5, 0xc9, 0x0c, 0x12, 0xa3, 0xae, 0x8b, 605 0x2d, 0x4e, 0x83, 0x9b, 0xe0, 0xf6, 0x01, 0x3b, 0xd4, 0xa6, 0xa7, 0xdb, 0x5d, 0xbd, 0x29, 0x34, 606 0x4e, 0xc3, 0x9b, 0xe0, 0x36, 0x61, 0x87, 0x9a, 0xbe, 0x86, 0xac, 0xc3, 0xa8, 0x46, 0xd6, 0x0a, 607 0xc9, 0x43, 0x08, 0x05, 0xb7, 0x84, 0x88, 0x85, 0x82, 0x93, 0xc7, 0x70, 0xd5, 0xa2, 0xda, 0x55, 608 0xda, 0xad, 0x74, 0x15, 0xbd, 0x86, 0xec, 0x6d, 0x25, 0x15, 0xee, 0xf7, 0x3f, 0x5b, 0x47, 0x27, 609 0x30, 0x76, 0xfd, 0x0e, 0x4c, 0x5f, 0x40, 0xfa, 0x45, 0x17, 0xfa, 0x3f, 0xfc, 0xd2, 0x6f, 0x90, 610 0x75, 0x52, 0xe7, 0x89, 0x40, 0xac, 0x7f, 0x37, 0x7b, 0x9d, 0x1d, 0x9b, 0x39, 0x25, 0xfe, 0x74, 611 0xe7, 0x89, 0x98, 0x1d, 0x93, 0xe7, 0x30, 0xae, 0x0a, 0xa5, 0x57, 0x5b, 0xc9, 0x45, 0x29, 0x90, 612 0x4f, 0x23, 0xdb, 0xcc, 0xcc, 0xe4, 0x47, 0x37, 0x47, 0x97, 0x90, 0x32, 0x2c, 0xf8, 0x80, 0x6f, 613 0x73, 0x5e, 0x59, 0x96, 0x0a, 0xb5, 0x23, 0xbb, 0xea, 0xb0, 0x5f, 0x74, 0xdc, 0x8f, 0x2e, 0x20, 614 0xeb, 0x50, 0x47, 0x9f, 0x56, 0x13, 0x78, 0x9e, 0x08, 0xc4, 0xbc, 0xd0, 0x85, 0xa5, 0x65, 0xcc, 615 0x8e, 0xc9, 0x23, 0x88, 0x50, 0x96, 0x16, 0x95, 0x30, 0x33, 0xa4, 0x6f, 0x00, 0xde, 0xa3, 0x1e, 616 0xf2, 0xf4, 0x04, 0x92, 0x75, 0x25, 0x37, 0x3f, 0x56, 0x82, 0x3b, 0x57, 0xf7, 0x6d, 0xbd, 0xe4, 617 0xf4, 0x33, 0xa4, 0x76, 0xa1, 0x73, 0xe0, 0x2b, 0x83, 0x13, 0x65, 0xef, 0x85, 0xed, 0xcd, 0x45, 618 0x47, 0x73, 0xf4, 0x03, 0x64, 0x5f, 0x5b, 0xa1, 0xf1, 0x0e, 0x17, 0x74, 0xc1, 0x9a, 0xc0, 0xd8, 619 0xb1, 0x3a, 0x7f, 0x2f, 0xff, 0x86, 0x10, 0xbf, 0x13, 0x15, 0x92, 0x39, 0xc4, 0x26, 0x76, 0xe4, 620 0x69, 0x7e, 0x96, 0xeb, 0xdc, 0x0b, 0xf5, 0xec, 0xd9, 0x40, 0xd7, 0x45, 0x6a, 0x64, 0x30, 0x26, 621 0x29, 0x3d, 0x18, 0x2f, 0x6b, 0x3d, 0x18, 0x3f, 0x5e, 0x1d, 0xc6, 0x7c, 0xc8, 0x1e, 0x8c, 0x17, 622 0x95, 0x1e, 0x8c, 0xff, 0xf5, 0xe9, 0x88, 0x2c, 0xe0, 0x9e, 0x3d, 0x2e, 0xb9, 0x54, 0xfa, 0x57, 623 0x3a, 0xbb, 0x1e, 0x6a, 0xfb, 0x24, 0xfb, 0x7a, 0x7a, 0x48, 0xfe, 0xab, 0xeb, 0x21, 0x9d, 0x3e, 624 0xba, 0xd1, 0xfa, 0xca, 0xfe, 0x3e, 0x5e, 0xfd, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x5c, 0xf0, 0x71, 625 0xa2, 0x4c, 0x04, 0x00, 0x00, 626 }