feat: 添加 WebSocket、WebRTC 与 Protobuf 支持
This commit is contained in:
11
protos/user.proto
Normal file
11
protos/user.proto
Normal file
@@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
// 尽管 Dart 不强制要求 package,但建议填写以防冲突
|
||||
package my_project;
|
||||
|
||||
message UserInfo {
|
||||
int32 id = 1;
|
||||
string name = 2;
|
||||
string email = 3;
|
||||
bool is_admin = 4;
|
||||
}
|
||||
Reference in New Issue
Block a user