aboutsummaryrefslogtreecommitdiffstats
path: root/todolist/memory_printer.go
blob: d9c504f11f3bc5172dc0b0085158cbca0a805b74 (plain)
1
2
3
4
5
6
7
8
9
package todolist

type MemoryPrinter struct {
	Groups *GroupedTodos
}

func (m *MemoryPrinter) Print(groupedTodos *GroupedTodos, printNotes bool) {
	m.Groups = groupedTodos
}