Skip to content

Commit d9842c6

Browse files
committed
update field name
1 parent e9419a6 commit d9842c6

File tree

2 files changed

+27
-27
lines changed

2 files changed

+27
-27
lines changed

pb/authclient.pb.go

+24-24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pb/authclient.proto

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ service Auth {
1010

1111
// The request message for AuthClient
1212
message AuthRequest {
13-
string clientID = 1;
13+
string clientKey = 1;
1414
string username = 2;
15-
string password = 3;
15+
string clientSecret = 3;
1616
}
1717

1818
// The request message for AuthClient
1919
message AuthResponse {
20-
string clientID = 1;
20+
string clientKey = 1;
2121
string username = 2;
2222
string code = 3; // return 200 when success
2323
string detail = 4; // a human-readable explanation

0 commit comments

Comments
 (0)