github.com/rpdict/ponzu@v0.10.1-0.20190226054626-477f29d6bf5e/management/format/csv.go (about)

     1  // Package format provides interfaces to format content into various kinds of
     2  // data
     3  package format
     4  
     5  // CSVFormattable is implemented with the method FormatCSV, which must return the ordered
     6  // slice of JSON struct tag names for the type implmenting it
     7  type CSVFormattable interface {
     8  	FormatCSV() []string
     9  }