Files
services/thumbnail/proto/thumbnail.proto
2021-05-22 22:12:48 +01:00

24 lines
495 B
Protocol Buffer

syntax = "proto3";
package thumbnail;
option go_package = "github.com/micro/services/url/proto;thumbnail";
service Thumbnail {
rpc Screenshot(ScreenshotRequest) returns (ScreenshotResponse) {}
}
// Create a thumbnail screenshot by passing in a url, height and width
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;
}