MCPcopy Index your code
hub / github.com/dnote/dnote / PresentNotes

Function PresentNotes

pkg/server/presenters/note.go:70–79  ·  view source on GitHub ↗

PresentNotes presents notes

(notes []database.Note)

Source from the content-addressed store, hash-verified

68
69// PresentNotes presents notes
70func PresentNotes(notes []database.Note) []Note {
71 ret := []Note{}
72
73 for _, note := range notes {
74 p := PresentNote(note)
75 ret = append(ret, p)
76 }
77
78 return ret
79}

Callers 2

V3IndexMethod · 0.92
TestPresentNotesFunction · 0.85

Calls 1

PresentNoteFunction · 0.85

Tested by 1

TestPresentNotesFunction · 0.68