This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
go-discogs/examples/discogs_example.go

24 lines
409 B
Go
Raw Normal View History

2016-03-04 16:08:02 +00:00
package main
import (
"fmt"
2017-02-13 16:40:27 +00:00
2016-03-04 16:48:26 +00:00
"github.com/irlndts/go-discogs"
2016-03-04 16:08:02 +00:00
)
func main() {
2017-05-09 15:52:58 +00:00
d := discogs.NewClient().UserAgent("TestDiscogsClient/0.0.1 +http://irlndts.moscow").Token("oQTQKAprakIQfWOkAxTdYyDpgUqahHtdbHTuYkIy")
2016-03-10 14:25:55 +00:00
2017-04-26 12:57:03 +00:00
if err := d.Currency("EUR"); err != nil {
2016-03-09 15:14:42 +00:00
fmt.Println(err)
2017-02-13 16:40:27 +00:00
return
}
2017-04-26 12:57:03 +00:00
release, err := d.Release(9893847)
if err != nil {
fmt.Println(err)
return
2016-03-09 15:14:42 +00:00
}
2017-04-26 12:57:03 +00:00
fmt.Printf("%+v\n", release)
2016-03-04 16:08:02 +00:00
}