Versions in this module Expand all Collapse all v1 v1.0.1 Mar 20, 2025 v1.0.0 Mar 19, 2025 Changes in this version + type Client struct + URL string + func NewClient(url string, token *oauth2.Token) *Client + func (c *Client) CreateNote(title string) (*notes.Note, error) + func (c *Client) DeleteNote(id int64) error + func (c *Client) GetNote(id int64) (*notes.Note, error) + func (c *Client) GetNoteContent(id int64) ([]byte, error) + func (c *Client) ListNotes() ([]*notes.Note, error) + func (c *Client) UpdateNote(id int64, title string) error + func (c *Client) UpdateNoteContent(id int64, content []byte) error