ChatService.proto 206 Bytes
Newer Older
Michele Fiori's avatar
Michele Fiori committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
syntax = "proto3";
package com.example.chat;

message ChatMessage {

    string from = 1;
    string message = 2;

}

service ChatService {

    rpc chat(stream ChatMessage) returns (stream ChatMessage);
}