mirror of
https://github.com/bestnite/go-igdb.git
synced 2025-04-20 00:45:54 +08:00
15 lines
201 B
Markdown
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)
|
|
```
|