Skip to content

Instantly share code, notes, and snippets.

@koradon
Created June 2, 2022 09:57
Show Gist options
  • Save koradon/0f23f31c84deb472d26e9d5bb3effb35 to your computer and use it in GitHub Desktop.
Save koradon/0f23f31c84deb472d26e9d5bb3effb35 to your computer and use it in GitHub Desktop.
syntax = "proto3
service UserStore {
rpc GetUserDataByEmail(UserEmailRequest) returns (UserResponse);
}
message User {
string email = 1;
string firstname = 2;
string lastname = 3;
}
message UserEmailRequest {
string email = 1;
}
message UserResponse {
User user = 1;
string error = 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment