syntax = "proto3";
package workwechat_text;
///WorkwechatText服务的传递参数
message WorkwechatTextAction {
string result=1; ///返回的结果
string error=2; ///返回的错误
string text=3;
string party=4;
string alarm_key=5;
int64 alarm_interval=6;
}
///WorkwechatText服务
service WorkwechatTextService {
///固定方法
rpc Flow (WorkwechatTextAction) returns (WorkwechatTextAction);
}