Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. syntax = "proto3"; // this is the declaration of the proto language syntax.
  2. // this model is for request
  3. message WelcomeRequest {
  4. string name = 1; // Here we are declaring the fields need to be transmitted in buffer.
  5. }
  6. // This model is for response.
  7. message WelcomeResponse {
  8. string message = 1; // Here we are declaring the fields need to be transmitted in buffer.
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement