Test Note Retrieval

This commit is contained in:
Micheal Wilkinson
2026-03-17 21:23:10 +00:00
parent a3aa962d39
commit 087b21d5dd
4 changed files with 82 additions and 0 deletions

View File

@@ -23,3 +23,7 @@ func (r *NoteRepository) CreateNote(content string) (models.Note, error) {
}
return r.store.SaveNote(note)
}
func (r *NoteRepository) GetNote(id int) (models.Note, error) {
return models.Note{}, fmt.Errorf("not implemented")
}