This commit is contained in:
2025-04-05 01:02:56 +11:00
commit 16eb5dc654
16 changed files with 18130 additions and 0 deletions

12
constant/url.go Normal file
View File

@@ -0,0 +1,12 @@
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"
)