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
2016-03-04 19:08:02 +03:00

15 lines
189 B
Go

package main
import (
"fmt"
"github.com/irlndts/go-discogs/discogs"
"net/http"
)
func main() {
client := &http.Client{}
discogs := discogs.NewClient(client)
fmt.Println(discogs)
}