beteran-protobuf/proto/c2se/backend/identity.proto

17 lines
292 B
Protocol Buffer
Raw Normal View History

2022-07-12 07:02:38 +00:00
syntax = "proto3";
package bet.beteran.c2se.backend.identity;
// subject = bet.beteran.c2se.backend.identity.Signin
message SigninRequest {
2022-07-27 06:45:53 +00:00
string token = 1;
string security_code = 2;
string username = 3;
string password = 4;
2022-07-12 07:02:38 +00:00
}
message SigninResponse {
2022-08-03 06:52:17 +00:00
string session_id = 1;
2022-07-12 07:02:38 +00:00
}
2022-07-15 06:14:09 +00:00