diff options
Diffstat (limited to 'patchset.proto')
| -rw-r--r-- | patchset.proto | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/patchset.proto b/patchset.proto index b905c6c..616e389 100644 --- a/patchset.proto +++ b/patchset.proto @@ -16,8 +16,14 @@ message Patch { repeated string Files = 10; // the filenames this patch changes } +message Patches { // `autogenpb:marshal` + string uuid = 1; // `autogenpb:uuid:be926ad9-1111-484c-adf2-d96eeabf3079` // todo: add autogenpb support for this + string version = 2; // `autogenpb:version:v0.0.45` // todo: add autogenpb support for this + repeated Patch Patches = 3; +} + message Patchset { // `autogenpb:marshal` - repeated Patch Patches = 1; // `autogenpb:unique` `autogenpb:sort` + Patches patches = 1; // `autogenpb:unique` `autogenpb:sort` string name = 2; // `autogenpb:sort` string comment = 3; // string gitAuthorName = 4; // `autogenpb:sort` |
