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