Advertisement
Guest User

Untitled

a guest
Apr 1st, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. syntax = "proto3";
  2.  
  3. option java_package = "com.ivanfoong.grpc.examples";
  4.  
  5. package auth;
  6.  
  7. service Authentication {
  8. rpc Login(LoginRequest) returns (LoginResponse) {}
  9. }
  10.  
  11. message LoginRequest {
  12. string username = 1;
  13. string password = 2;
  14. }
  15.  
  16. message LoginResponse {
  17. string error = 1;
  18. string session = 2;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement