This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
Nexus/pkg/proto/captcha.proto
2025-03-22 19:48:19 +08:00

19 lines
301 B
Protocol Buffer

syntax = "proto3";
option go_package = ".;proto";
package proto;
service CaptchaService {
rpc CheckCaptcha(CheckCaptchaRequest) returns (CheckCaptchaResponse) {}
}
message CheckCaptchaRequest {
string token = 1;
string remote_ip = 2;
}
message CheckCaptchaResponse {
bool is_valid = 1;
}