WriteDailyNote appends to today's daily note.
(entry string)
| 83 | |
| 84 | // WriteDailyNote appends to today's daily note. |
| 85 | func (ms *MemoryStore) WriteDailyNote(entry string) error { |
| 86 | return ms.manager.WriteDailyNote(entry) |
| 87 | } |
| 88 | |
| 89 | // GetRecentDailyNotes returns the last N days of notes. |
| 90 | func (ms *MemoryStore) GetRecentDailyNotes(days int) []DailyNote { |
no outgoing calls