diff options
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; // -} |
