summaryrefslogtreecommitdiff
path: root/repo.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-01 00:49:25 -0600
committerJeff Carr <[email protected]>2024-12-01 00:49:25 -0600
commit455ea31d70b3dfa95ca4f269e42cf6a8dcf5f0d9 (patch)
tree0428289ba77c371caec9324731ce5e913683272a /repo.proto
parent8a6fb6d442b3725459823644cf79bb1c4117e813 (diff)
checkDirty()v0.0.11
Diffstat (limited to 'repo.proto')
-rw-r--r--repo.proto4
1 files changed, 3 insertions, 1 deletions
diff --git a/repo.proto b/repo.proto
index 1d59e4f..fff5579 100644
--- a/repo.proto
+++ b/repo.proto
@@ -23,10 +23,12 @@ message Repo { // `autogenpb:marshal`
bool goPrimitive = 9; // if this is a golang primitive
GoDeps goDeps = 10;
google.protobuf.Timestamp lastGoDep = 11; // last time go.sum was processed
+
+ bool dirty = 12; // if git says things have been changed
}
message Repos { // `autogenpb:marshal`
- string uuid = 1; // I guess why not just have this on each file
+ 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;
}