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

15 lines
189 B
Go
Raw Normal View History

2016-03-04 16:08:02 +00:00
package main
import (
"fmt"
"github.com/irlndts/go-discogs/discogs"
"net/http"
)
func main() {
client := &http.Client{}
discogs := discogs.NewClient(client)
fmt.Println(discogs)
}