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

@@ -6,4 +6,5 @@ import (
type NoteStore interface {
SaveNote(models.Note) (models.Note, error)
GetNoteByID(int) (models.Note, error)
}