22 lines
396 B
Protocol Buffer
22 lines
396 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package git.v1;
|
|
|
|
// Mirrors: cmd/oid.rs — ObjectId(pub String)
|
|
message ObjectId {
|
|
string value = 1;
|
|
}
|
|
|
|
// Mirrors: cmd/commit/mod.rs — CommitSignature
|
|
message CommitSignature {
|
|
string name = 1;
|
|
string email = 2;
|
|
int64 time_secs = 3;
|
|
int32 offset_minutes = 4;
|
|
}
|
|
|
|
// Mirrors: cmd/tagger.rs — GitTagger
|
|
message GitTagger {
|
|
string name = 1;
|
|
string email = 2;
|
|
} |