diff options
| author | Jeff Carr <[email protected]> | 2025-01-30 01:15:41 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-30 01:15:41 -0600 |
| commit | 0bd0af48459479531fcce2d795587fce1fe6155d (patch) | |
| tree | 7e16e8d4e7e1eb4042639a4bc91e62308e162a8a | |
| parent | 7ba0c49ee329dacc479f61ef76518210c565afed (diff) | |
need to track times to throttle access
| -rw-r--r-- | repo.proto | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -42,6 +42,8 @@ message Repos { // `autogenpb:marshal` `autogenpb:sort` `autogenpb:nomutex` string uuid = 1; // `autogenpb:uuid:8daaeba1-fb1f-4762-ae6e-95a55d352673` string version = 2; // `autogenpb:version:v3` repeated Repo repos = 3; // `autogenpb:append` // generate AppendUnique() function for this + bool hasFullScan = 4; // a full repo scan has been saved to disk + google.protobuf.Timestamp fullScan = 5; // mtime of the last full scan saved to disk } // should it be done this way? |
