mirror of
https://github.com/bestnite/go-igdb.git
synced 2025-04-19 23:35:54 +08:00
u
This commit is contained in:
parent
6ae7a18fd9
commit
a0e24ca14b
@ -4,74 +4,148 @@ type Endpoint string
|
|||||||
|
|
||||||
var (
|
var (
|
||||||
AgeRatingCategories Endpoint = "age_rating_categories"
|
AgeRatingCategories Endpoint = "age_rating_categories"
|
||||||
AgeRatingContentDescriptions = "age_rating_content_descriptions"
|
AgeRatingContentDescriptions Endpoint = "age_rating_content_descriptions"
|
||||||
AgeRatingContentDescriptionsV2 = "age_rating_content_descriptions_v2"
|
AgeRatingContentDescriptionsV2 Endpoint = "age_rating_content_descriptions_v2"
|
||||||
AgeRatingOrganizations = "age_rating_organizations"
|
AgeRatingOrganizations Endpoint = "age_rating_organizations"
|
||||||
AgeRatings = "age_ratings"
|
AgeRatings Endpoint = "age_ratings"
|
||||||
AlternativeNames = "alternative_names"
|
AlternativeNames Endpoint = "alternative_names"
|
||||||
Artworks = "artworks"
|
Artworks Endpoint = "artworks"
|
||||||
CharacterGenders = "character_genders"
|
CharacterGenders Endpoint = "character_genders"
|
||||||
CharacterMugShots = "character_mug_shots"
|
CharacterMugShots Endpoint = "character_mug_shots"
|
||||||
Characters = "characters"
|
Characters Endpoint = "characters"
|
||||||
CharacterSpecies = "character_species"
|
CharacterSpecies Endpoint = "character_species"
|
||||||
CollectionMemberships = "collection_memberships"
|
CollectionMemberships Endpoint = "collection_memberships"
|
||||||
CollectionMembershipTypes = "collection_membership_types"
|
CollectionMembershipTypes Endpoint = "collection_membership_types"
|
||||||
CollectionRelations = "collection_relations"
|
CollectionRelations Endpoint = "collection_relations"
|
||||||
CollectionRelationTypes = "collection_relation_types"
|
CollectionRelationTypes Endpoint = "collection_relation_types"
|
||||||
Collections = "collections"
|
Collections Endpoint = "collections"
|
||||||
CollectionTypes = "collection_types"
|
CollectionTypes Endpoint = "collection_types"
|
||||||
Companies = "companies"
|
Companies Endpoint = "companies"
|
||||||
CompanyLogos = "company_logos"
|
CompanyLogos Endpoint = "company_logos"
|
||||||
CompanyStatuses = "company_statuses"
|
CompanyStatuses Endpoint = "company_statuses"
|
||||||
CompanyWebsites = "company_websites"
|
CompanyWebsites Endpoint = "company_websites"
|
||||||
Covers = "covers"
|
Covers Endpoint = "covers"
|
||||||
DateFormats = "date_formats"
|
DateFormats Endpoint = "date_formats"
|
||||||
EventLogos = "event_logos"
|
EventLogos Endpoint = "event_logos"
|
||||||
EventNetworks = "event_networks"
|
EventNetworks Endpoint = "event_networks"
|
||||||
Events = "events"
|
Events Endpoint = "events"
|
||||||
ExternalGames = "external_games"
|
ExternalGames Endpoint = "external_games"
|
||||||
ExternalGameSources = "external_game_sources"
|
ExternalGameSources Endpoint = "external_game_sources"
|
||||||
Franchises = "franchises"
|
Franchises Endpoint = "franchises"
|
||||||
GameEngineLogos = "game_engine_logos"
|
GameEngineLogos Endpoint = "game_engine_logos"
|
||||||
GameEngines = "game_engines"
|
GameEngines Endpoint = "game_engines"
|
||||||
GameLocalizations = "game_localizations"
|
GameLocalizations Endpoint = "game_localizations"
|
||||||
GameModes = "game_modes"
|
GameModes Endpoint = "game_modes"
|
||||||
GameReleaseFormats = "game_release_formats"
|
GameReleaseFormats Endpoint = "game_release_formats"
|
||||||
Games = "games"
|
Games Endpoint = "games"
|
||||||
GameStatuses = "game_statuses"
|
GameStatuses Endpoint = "game_statuses"
|
||||||
GameTimeToBeats = "game_time_to_beats"
|
GameTimeToBeats Endpoint = "game_time_to_beats"
|
||||||
GameTypes = "game_types"
|
GameTypes Endpoint = "game_types"
|
||||||
GameVersionFeatures = "game_version_features"
|
GameVersionFeatures Endpoint = "game_version_features"
|
||||||
GameVersionFeatureValues = "game_version_feature_values"
|
GameVersionFeatureValues Endpoint = "game_version_feature_values"
|
||||||
GameVersions = "game_versions"
|
GameVersions Endpoint = "game_versions"
|
||||||
GameVideos = "game_videos"
|
GameVideos Endpoint = "game_videos"
|
||||||
Genres = "genres"
|
Genres Endpoint = "genres"
|
||||||
InvolvedCompanies = "involved_companies"
|
InvolvedCompanies Endpoint = "involved_companies"
|
||||||
Keywords = "keywords"
|
Keywords Endpoint = "keywords"
|
||||||
Languages = "languages"
|
Languages Endpoint = "languages"
|
||||||
LanguageSupports = "language_supports"
|
LanguageSupports Endpoint = "language_supports"
|
||||||
LanguageSupportTypes = "language_support_types"
|
LanguageSupportTypes Endpoint = "language_support_types"
|
||||||
MultiplayerModes = "multiplayer_modes"
|
MultiplayerModes Endpoint = "multiplayer_modes"
|
||||||
NetworkTypes = "network_types"
|
NetworkTypes Endpoint = "network_types"
|
||||||
PlatformFamilies = "platform_families"
|
PlatformFamilies Endpoint = "platform_families"
|
||||||
PlatformLogos = "platform_logos"
|
PlatformLogos Endpoint = "platform_logos"
|
||||||
Platforms = "platforms"
|
Platforms Endpoint = "platforms"
|
||||||
PlatformTypes = "platform_types"
|
PlatformTypes Endpoint = "platform_types"
|
||||||
PlatformVersionCompanies = "platform_version_companies"
|
PlatformVersionCompanies Endpoint = "platform_version_companies"
|
||||||
PlatformVersionReleaseDates = "platform_version_release_dates"
|
PlatformVersionReleaseDates Endpoint = "platform_version_release_dates"
|
||||||
PlatformVersions = "platform_versions"
|
PlatformVersions Endpoint = "platform_versions"
|
||||||
PlatformWebsites = "platform_websites"
|
PlatformWebsites Endpoint = "platform_websites"
|
||||||
PlayerPerspectives = "player_perspectives"
|
PlayerPerspectives Endpoint = "player_perspectives"
|
||||||
PopularityPrimitives = "popularity_primitives"
|
PopularityPrimitives Endpoint = "popularity_primitives"
|
||||||
PopularityTypes = "popularity_types"
|
PopularityTypes Endpoint = "popularity_types"
|
||||||
Regions = "regions"
|
Regions Endpoint = "regions"
|
||||||
ReleaseDateRegions = "release_date_regions"
|
ReleaseDateRegions Endpoint = "release_date_regions"
|
||||||
ReleaseDates = "release_dates"
|
ReleaseDates Endpoint = "release_dates"
|
||||||
ReleaseDateStatuses = "release_date_statuses"
|
ReleaseDateStatuses Endpoint = "release_date_statuses"
|
||||||
Screenshots = "screenshots"
|
Screenshots Endpoint = "screenshots"
|
||||||
Search = "search"
|
Search Endpoint = "search"
|
||||||
Themes = "themes"
|
Themes Endpoint = "themes"
|
||||||
Webhooks = "webhooks"
|
Webhooks Endpoint = "webhooks"
|
||||||
Websites = "websites"
|
Websites Endpoint = "websites"
|
||||||
WebsiteTypes = "website_types"
|
WebsiteTypes Endpoint = "website_types"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var AllEndpoints = []Endpoint{
|
||||||
|
AgeRatingCategories,
|
||||||
|
AgeRatingContentDescriptions,
|
||||||
|
AgeRatingContentDescriptionsV2,
|
||||||
|
AgeRatingOrganizations,
|
||||||
|
AgeRatings,
|
||||||
|
AlternativeNames,
|
||||||
|
Artworks,
|
||||||
|
CharacterGenders,
|
||||||
|
CharacterMugShots,
|
||||||
|
Characters,
|
||||||
|
CharacterSpecies,
|
||||||
|
CollectionMemberships,
|
||||||
|
CollectionMembershipTypes,
|
||||||
|
CollectionRelations,
|
||||||
|
CollectionRelationTypes,
|
||||||
|
Collections,
|
||||||
|
CollectionTypes,
|
||||||
|
Companies,
|
||||||
|
CompanyLogos,
|
||||||
|
CompanyStatuses,
|
||||||
|
CompanyWebsites,
|
||||||
|
Covers,
|
||||||
|
DateFormats,
|
||||||
|
EventLogos,
|
||||||
|
EventNetworks,
|
||||||
|
Events,
|
||||||
|
ExternalGames,
|
||||||
|
ExternalGameSources,
|
||||||
|
Franchises,
|
||||||
|
GameEngineLogos,
|
||||||
|
GameEngines,
|
||||||
|
GameLocalizations,
|
||||||
|
GameModes,
|
||||||
|
GameReleaseFormats,
|
||||||
|
Games,
|
||||||
|
GameStatuses,
|
||||||
|
GameTimeToBeats,
|
||||||
|
GameTypes,
|
||||||
|
GameVersionFeatures,
|
||||||
|
GameVersionFeatureValues,
|
||||||
|
GameVersions,
|
||||||
|
GameVideos,
|
||||||
|
Genres,
|
||||||
|
InvolvedCompanies,
|
||||||
|
Keywords,
|
||||||
|
Languages,
|
||||||
|
LanguageSupports,
|
||||||
|
LanguageSupportTypes,
|
||||||
|
MultiplayerModes,
|
||||||
|
NetworkTypes,
|
||||||
|
PlatformFamilies,
|
||||||
|
PlatformLogos,
|
||||||
|
Platforms,
|
||||||
|
PlatformTypes,
|
||||||
|
PlatformVersionCompanies,
|
||||||
|
PlatformVersionReleaseDates,
|
||||||
|
PlatformVersions,
|
||||||
|
PlatformWebsites,
|
||||||
|
PlayerPerspectives,
|
||||||
|
PopularityPrimitives,
|
||||||
|
PopularityTypes,
|
||||||
|
Regions,
|
||||||
|
ReleaseDateRegions,
|
||||||
|
ReleaseDates,
|
||||||
|
ReleaseDateStatuses,
|
||||||
|
Screenshots,
|
||||||
|
Search,
|
||||||
|
Themes,
|
||||||
|
Webhooks,
|
||||||
|
Websites,
|
||||||
|
WebsiteTypes,
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user