Files
ezbookkeeping/pkg/exporters/data_exporter.go
T
2021-03-21 19:04:06 +08:00

10 lines
441 B
Go

package exporters
import "github.com/mayswind/lab/pkg/models"
// DataExporter defines the structure of data exporter
type DataExporter interface {
// GetOutputContent returns the exported data
GetOutputContent(uid int64, transactions []*models.Transaction, accountMap map[int64]*models.Account, categoryMap map[int64]*models.TransactionCategory, tagMap map[int64]*models.TransactionTag, allTagIndexs map[int64][]int64) ([]byte, error)
}