Skip to content

Instantly share code, notes, and snippets.

@KamilLelonek
Last active April 29, 2019 19:48
Show Gist options
  • Save KamilLelonek/502af1491bb0c63a134333deed88336c to your computer and use it in GitHub Desktop.
Save KamilLelonek/502af1491bb0c63a134333deed88336c to your computer and use it in GitHub Desktop.
syntax = "proto3";
package gravatar;
service GravatarService {
rpc Generate(GravatarRequest) returns (GravatarResponse)
}
message GravatarRequest {
string email = 1;
int32 size = 2;
}
message GravatarResponse {
string url = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment