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

16 lines
293 B
Protocol Buffer
Raw Normal View History

2022-07-12 07:02:38 +00:00
syntax = "proto3";
package bet.beteran.c2se.frontend.identity;
// subject = bet.beteran.c2se.frontend.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
}