app-cloudep-comment-server/generate/protobuf/comment.proto

20 lines
258 B
Protocol Buffer
Raw Normal View History

2025-01-15 05:17:30 +00:00
syntax = "proto3";
package comment;
option go_package="./comment";
// OKResp
message OKResp {}
// NoneReq
message NoneReq {}
message Pager {
int64 total =1;
int64 size=2;
int64 index=3;
}
service Comment {
rpc Empty(NoneReq) returns(OKResp);
}