Guest User

Untitled

a guest
Jan 3rd, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. message UserMessage {
  2. oneof action {
  3. Login login = 1;
  4. Logout logout = 2;
  5. }
  6. }
  7.  
  8. message Login {
  9. string username = 1;
  10. string password = 2;
  11. }
  12.  
  13. message Logout {
  14. string username = 1;
  15. }
Add Comment
Please, Sign In to add comment