公告板
版本库
filestore
活动
搜索
登录
pubsub
/
protomsg
protobuf 定义的协议格式
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
Merge branch 'master' of http://192.168.5.5:10010/r/pubsub/protomsg
cheliequan
2023-02-10
e1e6c52f78473b3e8711006e398f8052f6ae6dec
[pubsub/protomsg.git]
/
facedetect.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
syntax = "proto3";
import "sdk.proto";
package protomsg;
message FaceDetectRequest {
bytes reqParam = 1;
}
service FaceDetect {
rpc FaceDetect(FaceDetectRequest) returns (ParamFacePos){}
}