Testing List notes

This commit is contained in:
Micheal Wilkinson
2026-03-17 21:26:28 +00:00
parent 9d35cc39c6
commit 7e0701d50d
4 changed files with 67 additions and 0 deletions

View File

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