You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
651 B
33 lines
651 B
syntax = "proto3"; |
|
|
|
package captcha.v0; |
|
|
|
option go_package = "v0"; |
|
|
|
import "github.com/gogo/protobuf/gogoproto/gogo.proto"; |
|
|
|
service Captcha { |
|
|
|
/** 校验验证码 |
|
* |
|
*/ |
|
rpc check (CaptchaCheckReq) returns (CaptchaCheckResp); |
|
} |
|
|
|
|
|
|
|
message CaptchaCheckReq { |
|
// token值 |
|
string token = 1 [(gogoproto.jsontag) = "token"]; |
|
// 输入值 |
|
string phrase = 2 [(gogoproto.jsontag) = "phrase"]; |
|
} |
|
|
|
message CaptchaCheckResp { |
|
// code |
|
int64 code = 1 [(gogoproto.jsontag) = "code"]; |
|
// msg |
|
string msg = 2 [(gogoproto.jsontag) = "msg"]; |
|
// |
|
map<int64, int64> data = 3 [(gogoproto.jsontag) = "data"]; |
|
} |