Generator is an abstraction of code generators.
| 7 | |
| 8 | // Generator is an abstraction of code generators. |
| 9 | type Generator interface { |
| 10 | // Generate generates output files from input .proto files. |
| 11 | Generate(targets []*descriptor.File) ([]*descriptor.ResponseFile, error) |
| 12 | } |
no outgoing calls
no test coverage detected