Versions in this module Expand all Collapse all v0 v0.1.0 Jul 3, 2025 Changes in this version + type Note struct + Content string + CreatedAt string + Headline string + Id utils.NoteId + Tags []string + UpdatedAt string + func NewNote(noteId utils.NoteId, headline, content string, tags []string) *Note + func (n *Note) FromJson(data []byte) error + func (n *Note) GetContent() string + func (n *Note) GetCreatedAt() string + func (n *Note) GetHeadline() string + func (n *Note) GetId() utils.NoteId + func (n *Note) GetTags() []string + func (n *Note) GetUpdatedAt() string + func (n *Note) SetContent(content string) + func (n *Note) SetHeadline(headline string) + func (n *Note) SetTags(tags []string) + func (n *Note) SetUpdatedAt(updatedAt string) + func (n *Note) ToJson() ([]byte, error)