Versions in this module Expand all Collapse all v0 v0.1.0 Jul 3, 2025 Changes in this version + type NoteEngine interface + Close func() error + CreateNote func(content, headline string, tags []string) (models.Note, error) + DeleteNote func(noteId utils.NoteId) error + Initialize func(dbPath string, options map[string]string) error + ListNotes func(tags []string) ([]*models.Note, error) + ReadNote func(noteId utils.NoteId) (*models.Note, error) + SearchNotes func(query string) ([]*models.Note, error) + UpdateNote func(noteId utils.NoteId, content, headline string, tags []string) error