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