Versions in this module Expand all Collapse all v0 v0.1.0 Jul 3, 2025 Changes in this version + var ErrBucketNotFound = errors.New("bucket not found") + type LocalDBEngine struct + func NewLocalDBEngine() *LocalDBEngine + func (e *LocalDBEngine) Close() error + func (e *LocalDBEngine) CreateNote(content, headline string, tags []string) (models.Note, error) + func (e *LocalDBEngine) DeleteNote(noteId utils.NoteId) error + func (e *LocalDBEngine) Initialize(dbPath string, options map[string]string) error + func (e *LocalDBEngine) ListNotes(tags []string) ([]*models.Note, error) + func (e *LocalDBEngine) ReadNote(noteId utils.NoteId) (*models.Note, error) + func (e *LocalDBEngine) SearchNotes(query string) ([]*models.Note, error) + func (e *LocalDBEngine) UpdateNote(noteId utils.NoteId, content, headline string, tags []string) error