10 lines
136 B
Protocol Buffer
10 lines
136 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package chat;
|
|
|
|
import "messages.proto";
|
|
|
|
service Chat {
|
|
rpc sendMsg(stream chatMsg) returns (stream chatMsg) {}
|
|
}
|