minor cleanups
This commit is contained in:
parent
4193f41847
commit
281ffbc75b
|
@ -6,7 +6,7 @@ package forgepb;
|
||||||
|
|
||||||
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
|
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
|
||||||
|
|
||||||
// I don't need this kind of specicivity (can't spell)
|
// Forge doesn't need this kind of specificity
|
||||||
// but this is what the patch files contain and how git sees them
|
// but this is what the patch files contain and how git sees them
|
||||||
// message Blob {
|
// message Blob {
|
||||||
// string hunkLine = 1;
|
// string hunkLine = 1;
|
||||||
|
@ -16,7 +16,7 @@ import "google/protobuf/timestamp.proto"; // Import the well-known type for Time
|
||||||
// message File {
|
// message File {
|
||||||
// string filename = 1;
|
// string filename = 1;
|
||||||
// string hashLine = 2;
|
// string hashLine = 2;
|
||||||
// repeated Blob Blobs = 3;
|
// repeated Blob Blobs = 3;
|
||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
// message Patch {
|
// message Patch {
|
||||||
|
@ -55,8 +55,8 @@ message Patch {
|
||||||
}
|
}
|
||||||
|
|
||||||
message Patches { // this is a "PATCH: [1/x]" series
|
message Patches { // this is a "PATCH: [1/x]" series
|
||||||
string uuid = 1; // `autogenpb:uuid:be926ad9-1111-484c-adf2-d96eeabf3079` // todo: add autogenpb support for this
|
string uuid = 1; // `autogenpb:uuid:be926ad9-1111-484c-adf2-d96eeabf3079`
|
||||||
string version = 2; // `autogenpb:version:v0.0.45` // todo: add autogenpb support for this
|
string version = 2; // `autogenpb:version:v0.0.45`
|
||||||
repeated Patch Patches = 3;
|
repeated Patch Patches = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ message Patchset { // `autogenpb:mars
|
||||||
}
|
}
|
||||||
|
|
||||||
message Patchsets { // `autogenpb:marshal`
|
message Patchsets { // `autogenpb:marshal`
|
||||||
string uuid = 1; // `autogenpb:uuid:be926ad9-f07f-484c-adf2-d96eeabf3079` // todo: add autogenpb support for this
|
string uuid = 1; // `autogenpb:uuid:be926ad9-f07f-484c-adf2-d96eeabf3079`
|
||||||
string version = 2; // `autogenpb:version:v0.0.45` // todo: add autogenpb support for this
|
string version = 2; // `autogenpb:version:v0.0.45`
|
||||||
repeated Patchset Patchsets = 3;
|
repeated Patchset Patchsets = 3;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue