beteran-protobuf/proto/c2se/backend/identity.proto
2022-07-27 06:45:53 +00:00

20 lines
377 B
Protocol Buffer

syntax = "proto3";
package bet.beteran.c2se.backend.identity;
import "protobuf/rpc/error.proto";
// subject = bet.beteran.c2se.backend.identity.Signin
message SigninRequest {
string token = 1;
string security_code = 2;
string username = 3;
string password = 4;
}
message SigninResponse {
optional bet.protobuf.rpc.Error error = 1;
optional string token = 2;
}