Versions in this module Expand all Collapse all v0 v0.5.0 Mar 27, 2017 Changes in this version + const MaxStringLen type Book + func (b *Book) String() string + type Books []*Book + func (b Books) Len() int + func (b Books) Less(i, j int) bool + func (b Books) Swap(i, j int) type Note + func (n *Note) GetTagIDsArray() []int64 + func (n *Note) String() string + type Notes []*Note + func (n Notes) Len() int + func (n Notes) Less(i, j int) bool + func (n Notes) Swap(i, j int) type Tag + func (t *Tag) String() string + type Tags []*Tag + func (t Tags) Len() int + func (t Tags) Less(i, j int) bool + func (t Tags) Swap(i, j int) v0.3.0 Feb 27, 2017 Changes in this version + var Basic = "basic" + var NoteTypes = []string + var URL = "url" + type Book struct + Created time.Time + ID int64 + Modified time.Time + Name string + func NewBook() *Book + type Note struct + Body string + Book *Book + Created time.Time + ID int64 + Modified time.Time + Tags []*Tag + Title string + Type string + func NewNote() *Note + func (n *Note) GetTagStringArray() []string + func (n *Note) MarshalJSON() ([]byte, error) + type Tag struct + Created time.Time + ID int64 + Modified time.Time + Name string + func NewTag() *Tag