Documentation ¶ Index ¶ type Exporter func New(formats []Format) (*Exporter, error) func NewWithOptions(formats []Format, showRegistered bool) (*Exporter, error) func (e *Exporter) Append(r scanner.Result) func (e *Exporter) Close() func (e *Exporter) Filenames() []string type Format Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Exporter ¶ type Exporter struct { // contains filtered or unexported fields } func New ¶ func New(formats []Format) (*Exporter, error) func NewWithOptions ¶ added in v1.3.0 func NewWithOptions(formats []Format, showRegistered bool) (*Exporter, error) func (*Exporter) Append ¶ func (e *Exporter) Append(r scanner.Result) func (*Exporter) Close ¶ func (e *Exporter) Close() func (*Exporter) Filenames ¶ func (e *Exporter) Filenames() []string type Format ¶ type Format string const ( FormatTXT Format = "txt" FormatJSON Format = "json" FormatCSV Format = "csv" ) Source Files ¶ View all Source files export.go Click to show internal directories. Click to hide internal directories.