Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewCollector ¶
func NewCollector(customImports, commonImports []string) *collector
func NewProtoCompiler ¶
func NewProtoCompiler(
collector Collector,
customImports, customGoArgs, customPlugins []string,
descriptorOutDir string,
wantCompile func(string) bool,
protocOptions ProtocOptions,
) *protoCompiler
Types ¶
type Collector ¶
type Collector interface {
CollectImportsForFile(root, protoFile string) ([]string, error)
}
type DescriptorWithPath ¶
type DescriptorWithPath struct {
*descriptor.FileDescriptorProto
ProtoFilePath string
}
func (*DescriptorWithPath) GetMessage ¶
func (file *DescriptorWithPath) GetMessage(typeName string) *descriptor.DescriptorProto
type ProtoCompiler ¶
type ProtoCompiler interface {
CompileDescriptorsFromRoot(root string, skipDirs []string) ([]*DescriptorWithPath, error)
}
type ProtocOptions ¶
type ProtocOptions struct {
// declare mappings from proto files to full import paths of the corresponding generated Go code
// used when the source proto files don't define `go_package`
GoPackage map[string]string
}
Click to show internal directories.
Click to hide internal directories.