go-igdb/README.md
2025-04-05 02:42:09 +11:00

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)