summary history files

internal/report/report.go
package report

import "gt/internal/store"

type IncomeExpenseReport struct {
	Income  []*AccountItem
	Expense []*AccountItem
}

type AccountItem struct {
	Account    store.Account
	ValueNum   int64
	ValueDenom int64
}