Documentation
¶
Overview ¶
Package bookmarkable manages private bookmarks using Gist as the storage mechanism.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Bookmark ¶
type Bookmark struct {
Title string `json:"title"`
URL string `json:"url"`
Tags []string `json:"tags"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}
Bookmark represents a single Bookmark
type DB ¶
type DB struct {
// contains filtered or unexported fields
}
DB is the front end storage model.
func (*DB) GetBookmarks ¶
GetBookmarks returns all locally stored Bookmark structs.
Click to show internal directories.
Click to hide internal directories.