(imageFiles []ImageFile)
| 294 | } |
| 295 | |
| 296 | func imageFilesToFileDescriptorProtos(imageFiles []ImageFile) []*descriptorpb.FileDescriptorProto { |
| 297 | fileDescriptorProtos := make([]*descriptorpb.FileDescriptorProto, len(imageFiles)) |
| 298 | for i, imageFile := range imageFiles { |
| 299 | fileDescriptorProtos[i] = imageFile.FileDescriptorProto() |
| 300 | } |
| 301 | return fileDescriptorProtos |
| 302 | } |
| 303 | |
| 304 | func imageFileToProtoImageFile(imageFile ImageFile) (*imagev1.ImageFile, error) { |
| 305 | var protoCommitID string |
no test coverage detected
searching dependent graphs…