initial commit

This commit is contained in:
2025-08-05 15:53:44 +08:00
commit 09dc02ae52
553 changed files with 137665 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
syntax = "proto3";
package protorpc;
message LoginParam {
string username = 1;
string password = 2;
}
message LoginResult {
uint64 user_id = 1;
string token = 2;
}