formatter.go 311 B

12345678910111213141516
  1. package model
  2. import "encoding/csv"
  3. //CsvFormatter CsvFormatter
  4. type CsvFormatter interface {
  5. GetFileName() string
  6. // ToCsv do not call flush
  7. ToCsv(writer *csv.Writer)
  8. }
  9. //ExportArgInterface export interface
  10. type ExportArgInterface interface {
  11. // ExportFormat options: json, csv
  12. ExportFormat() string
  13. }