diff options
| author | Jeff Carr <[email protected]> | 2025-10-08 11:18:56 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-08 11:18:56 -0500 |
| commit | b82e6b44dd7fa0522fa124314aa5a48d067c2976 (patch) | |
| tree | 20350b002066fd8e40f359f5240527c63663ee28 /filetype.proto | |
| parent | d82353457849bd574f028694e4e1e8a37b54ac4b (diff) | |
jeezv0.0.3
Diffstat (limited to 'filetype.proto')
| -rw-r--r-- | filetype.proto | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/filetype.proto b/filetype.proto index 7ec6006..b18e069 100644 --- a/filetype.proto +++ b/filetype.proto @@ -2,6 +2,13 @@ syntax = "proto3"; package filepb; +// this generic message is used by autogen to identify and +// then dump the uuid and version from any arbitrary .pb file +message Identify { // `autogenpb:marshal` + string uuid = 1; // + string version = 2; // +} + message Filetype { // `autogenpb:var:w io.Writer` bool nothing = 1; // generate autosave functions (in marshal.go ?) } @@ -17,9 +24,3 @@ message Filetypes { // `autogenpb:marshal` string version = 2; // `autogenpb:version:v0.0.1` repeated Filetype Filetypes = 3; // an array of each .proto file in the working directory } -// this generic message is used by autogen to identify and -// then dump the uuid and version from any arbitrary .pb file -message Identify { // `autogenpb:marshal` - string uuid = 1; // - string version = 2; // -} |
