diff options
| author | Jeff Carr <[email protected]> | 2025-10-18 08:00:52 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-18 08:00:52 -0500 |
| commit | f683e1adc9fd612a67f6cc34ba3188a8120f87d7 (patch) | |
| tree | 925f08631f9ecb192adb8fdc2863612b68c3f1a6 /argv.proto | |
| parent | b2c353f48082a1d581bee0b6ee71c93f58bff603 (diff) | |
still tinkering
Diffstat (limited to 'argv.proto')
| -rw-r--r-- | argv.proto | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -7,6 +7,12 @@ package argvpb; import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp import "google/protobuf/duration.proto"; // for duration +message App { + string APPNAME = 1; + string VERSION = 2; + string BUILDTIME = 3; +} + message Argv { // `autogenpb:marshal` `autogenpb:sort` `autogenpb:nomutex` google.protobuf.Timestamp ctime = 1; // when the user tried this autocomplete google.protobuf.Duration duration = 2; // time since the last autocomplete @@ -25,6 +31,7 @@ message Argv { // `autogenpb:marshal` ` repeated string goargs = 15; // what to send to alex flint's go-args for help bool fast = 16; // was the user fast last time? string fastcmd = 17; // what subcommand was the user fast on? + App app = 18; } message Argvs { // `autogenpb:marshal` `autogenpb:sort` `autogenpb:nomutex` |
