This commit is contained in:
2025-04-05 01:14:12 +11:00
parent 16eb5dc654
commit 8aeff93526
4 changed files with 23 additions and 5 deletions

14
README.md Normal file
View File

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