diff options
| author | Jeff Carr <[email protected]> | 2025-01-14 12:49:22 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-14 12:49:22 -0600 |
| commit | 97c65be0a0bdadca494956fd9c2b58d94e8a5fcc (patch) | |
| tree | 1440857daaa54ead0314541faae4ad64cd199145 /protoParse.go | |
| parent | 81d6cd6b74fa4b4c94ec13bf02c5b9ac768d36d6 (diff) | |
use the fhelp package
Diffstat (limited to 'protoParse.go')
| -rw-r--r-- | protoParse.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/protoParse.go b/protoParse.go index c039028..9efe2fd 100644 --- a/protoParse.go +++ b/protoParse.go @@ -66,9 +66,10 @@ func (pb *Files) hasPluralMessage(f *File) error { func (pb *Files) protoParse(pf *File) error { // does the file conform to the standard? (also reads in UUID & Version) - if err := pb.hasPluralMessage(pf); err != nil { - return err - } + // if err := pb.hasPluralMessage(pf); err != nil { + // return err + // } + // os.Exit(0) uuid, version, err := fhelp.ValidProtobuf(pf.Filename) if err != nil { |
