Files
services/thumbnail/proto/thumbnail.proto
2021-05-21 14:25:51 +01:00

23 lines
424 B
Protocol Buffer

syntax = "proto3";
package thumbnail;
option go_package = "github.com/micro/services/url/proto;thumbnail";
service Thumbnail {
rpc Screenshot(ScreenshotRequest) returns (ScreenshotResponse) {}
}
message ScreenshotRequest {
string url = 1;
// width of the browser window. optional
int32 width = 2;
// height of the browser window, optional
int32 height = 3;
}
message ScreenshotResponse {
string imageURL = 1;
}