mirror of
https://github.com/bestnite/go-igdb.git
synced 2025-04-20 05:25:53 +08:00
13 lines
524 B
Go
13 lines
524 B
Go
package constant
|
|
|
|
const (
|
|
IGDBGameURL = "https://api.igdb.com/v4/games.pb"
|
|
IGDBCompaniesURL = "https://api.igdb.com/v4/companies.pb"
|
|
IGDBWebsitesURL = "https://api.igdb.com/v4/websites.pb"
|
|
IGDBExternalGameURL = "https://api.igdb.com/v4/external_games.pb"
|
|
IGDBPopularityURL = "https://api.igdb.com/v4/popularity_primitives.pb"
|
|
IGDBWebhookURL = "https://api.igdb.com/v4/%s/webhooks/"
|
|
IGDBWebSearchURL = "https://www.igdb.com/search"
|
|
TwitchAuthURL = "https://id.twitch.tv/oauth2/token"
|
|
)
|