go-igdb/README.md
2025-04-05 01:14:12 +11:00

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)