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