diff options
Diffstat (limited to 'memory_printer.go')
| -rw-r--r-- | memory_printer.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/memory_printer.go b/memory_printer.go new file mode 100644 index 0000000..62eaa83 --- /dev/null +++ b/memory_printer.go @@ -0,0 +1,9 @@ +package todolist + +type MemoryPrinter struct { + Groups *GroupedTodos +} + +func (m *MemoryPrinter) Print(groupedTodos *GroupedTodos, printNotes bool) { + f.Groups = groupedTodos +} |
