package
Version:
v0.0.0-...-0ba1a38
Opens a new window with list of versions in this module.
Published: Feb 3, 2019
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Album struct {
Name string `json:"name"`
Images []Image `json:"images"`
}
type Artist struct {
Name string `json:"name"`
}
type Image struct {
Width int `json:"width"`
Height int `json:"height"`
URL string `json:"url"`
}
type Track struct {
Artists []Artist `json:"artists"`
Name string `json:"name"`
ID string `json:"id"`
Album Album `json:"album"`
}
type Tracks struct {
Items []Track `json:"items"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.