14 lines
364 B
Protocol Buffer
14 lines
364 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package images.v1;
|
|
|
|
import "images/v1/delete.proto";
|
|
import "images/v1/get.proto";
|
|
import "images/v1/list.proto";
|
|
|
|
service ImageService {
|
|
rpc ListImages(ListImagesRequest) returns (ListImagesResponse) {}
|
|
rpc DeleteImages(DeleteImagesRequest) returns (DeleteImagesResponse) {}
|
|
rpc GetImage(GetImageRequest) returns (GetImageResponse) {}
|
|
}
|