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); }