Release 0.1.0

This commit is contained in:
xeon
2026-02-02 20:53:22 +03:00
commit 25660300dd
152 changed files with 882089 additions and 0 deletions

26
proto/pb/cs_wallet.proto Normal file
View File

@@ -0,0 +1,26 @@
syntax = "proto3";
package proto;
option go_package = "/csproto";
import "common.proto";
message MONEY_INFO {
string id = 1;
int64 amount = 2;
}
message CS_WALLET_RECORD_REQUIRE {
string id = 1;
}
message SC_SYNC_WALLET {
repeated MONEY_INFO money_list = 1;
repeated WALLET_MONEY_RECORD record_mgr = 2;
}
message SC_SYNC_WALLET_RECORD {
WALLET_MONEY_RECORD record = 2;
}
message SC_WALLET_SYNC_MONEY {
string id = 1;
int64 amount = 2;
int64 op_amount = 3;
}