Improvements

This commit is contained in:
irlndts
2018-02-20 19:26:00 +03:00
parent 916e1f0bd6
commit 6af125badd
3 changed files with 46 additions and 12 deletions

View File

@@ -10,6 +10,7 @@ func main() {
d, err := discogs.NewClient(&discogs.Options{
UserAgent: "TestDiscogsClient/0.0.1 +http://example.com",
Currency: "EUR",
Token: "",
})
if err != nil {
fmt.Println(err)
@@ -21,5 +22,5 @@ func main() {
fmt.Println(err)
return
}
fmt.Printf("%+v\n", release)
fmt.Printf("%+v\n", release.Title)
}