1
mirror of https://github.com/bestnite/go-igdb.git synced 2025-05-07 19:42:02 +08:00
2025-04-05 02:42:09 +11:00

15 lines
201 B
Markdown

# go-igdb
a go library to access IGDB API
## Usage
```go
g := igdb.New("clientID", "clientSecret")
game, err := g.GetGameByID(325594)
if err != nil {
log.Fatal(err)
}
fmt.Println(game.Name)
```