mirror of
https://github.com/bestnite/go-igdb.git
synced 2025-07-02 10:32:35 +08:00
197 B
197 B
go-igdb
a go library to access IGDB API
Usage
g := igdb.New("clientID", "clientSecret")
game, err := g.GetGame(325594)
if err != nil {
log.Fatal(err)
}
fmt.Println(game.Name)