Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2025-01-09 20:44:45 -06:00
parent 6c5a858125
commit 52bbf4c827
1 changed files with 3 additions and 3 deletions

View File

@ -36,10 +36,10 @@ message Repo { // `autogenpb:marshal`
string state = 23; // status or state. useful for building tooling
}
message Repos { // `autogenpb:marshal`
message Repos { // `autogenpb:marshal` `autogenpb:sort` `autogenpb:mutex`
string uuid = 1; // `autogenpb:uuid:8daaeba1-fb1f-4762-ae6e-95a55d352673`
string version = 2; // maybe can be used for protobuf schema change violations
repeated Repo repos = 3;
string version = 2; // `autogenpb:version:2`
repeated Repo repos = 3; // `autogenpb:append` // generate AppendUnique() function for this
}
// should it be done this way?