refactor(proto): scope client and user-agent schemas and extract shared types

This commit is contained in:
hdbg
2026-04-03 19:08:19 +02:00
parent f6f4f81acb
commit 5141ac4f55
10 changed files with 186 additions and 127 deletions

View File

@@ -0,0 +1,9 @@
syntax = "proto3";
package arbiter.shared;
message ClientInfo {
string name = 1;
optional string description = 2;
optional string version = 3;
}