Last active
April 29, 2019 19:48
-
-
Save KamilLelonek/502af1491bb0c63a134333deed88336c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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