WriteDailyNote delegates to the daily note store.
(entry string)
| 427 | |
| 428 | // WriteDailyNote delegates to the daily note store. |
| 429 | func (m *Manager) WriteDailyNote(entry string) error { |
| 430 | return m.Daily.WriteDailyNote(entry) |
| 431 | } |
| 432 | |
| 433 | // GetRecentDailyNotes delegates to the daily note store. |
| 434 | func (m *Manager) GetRecentDailyNotes(days int) []DailyNote { |
no outgoing calls