Versions in this module Expand all Collapse all v0 v0.2.0 Jun 21, 2023 Changes in this version type Expense + Amount int type Loan + Installment int v0.1.0 Jun 20, 2023 Changes in this version + type Entry interface + Monthly func() int + Tags func() []string + func Parse(r io.Reader) ([]Entry, error) + type Expense struct + Period string + func (e *Expense) Monthly() int + func (e *Expense) String() string + func (e *Expense) Tags() []string + type Loan struct + Date string + Interest float64 + Left int + Orig int + func (l *Loan) Monthly() int + func (l *Loan) Tags() []string + type Scanner struct + func NewScanner(r io.Reader) *Scanner + func (s *Scanner) Scan() (Entry, error)