Documentation
¶
Index ¶
- func HTTPRequest(method, url string, headers map[string]string, body []byte) (*http.Response, error)
- func New(c Config) http.Handler
- type Config
- type GetLeagueStandingsByLeagueIdResponse
- type GetLeagueStandingsByTeamIdResponse
- type GetLeaguesResponse
- type GetLineUpResponse
- type GetMatchesAPIResponse
- type GetMatchesParams
- type GetSquadResponse
- type HealthResponse
- type Player
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func HTTPRequest ¶
Types ¶
type GetLeagueStandingsByLeagueIdResponse ¶
type GetLeagueStandingsByLeagueIdResponse struct { Get string `json:"get"` Parameters struct { League string `json:"league"` Season string `json:"season"` } `json:"parameters"` Errors any `json:"errors"` Results int `json:"results"` Paging struct { Current int `json:"current"` Total int `json:"total"` } `json:"paging"` Response []struct { League struct { ID int `json:"id"` Name string `json:"name"` Country string `json:"country"` Logo string `json:"logo"` Flag string `json:"flag"` Season int `json:"season"` Standings [][]struct { Rank int `json:"rank"` Team struct { ID int `json:"id"` Name string `json:"name"` Logo string `json:"logo"` } `json:"team"` Points int `json:"points"` GoalsDiff int `json:"goalsDiff"` Group string `json:"group"` Form string `json:"form"` Status string `json:"status"` Description string `json:"description"` All struct { Played int `json:"played"` Win int `json:"win"` Draw int `json:"draw"` Lose int `json:"lose"` Goals struct { For int `json:"for"` Against int `json:"against"` } `json:"goals"` } `json:"all"` Home struct { Played int `json:"played"` Win int `json:"win"` Draw int `json:"draw"` Lose int `json:"lose"` Goals struct { For int `json:"for"` Against int `json:"against"` } `json:"goals"` } `json:"home"` Away struct { Played int `json:"played"` Win int `json:"win"` Draw int `json:"draw"` Lose int `json:"lose"` Goals struct { For int `json:"for"` Against int `json:"against"` } `json:"goals"` } `json:"away"` Update time.Time `json:"update"` } `json:"standings"` } `json:"league"` } `json:"response"` }
type GetLeagueStandingsByTeamIdResponse ¶
type GetLeagueStandingsByTeamIdResponse struct { Get string `json:"get"` Parameters struct { Season string `json:"season"` Team string `json:"team"` } `json:"parameters"` Errors any `json:"errors"` Results int `json:"results"` Paging struct { Current int `json:"current"` Total int `json:"total"` } `json:"paging"` Response []struct { League struct { ID int `json:"id"` Name string `json:"name"` Country string `json:"country"` Logo string `json:"logo"` Flag string `json:"flag"` Season int `json:"season"` Standings [][]struct { Rank int `json:"rank"` Team struct { ID int `json:"id"` Name string `json:"name"` Logo string `json:"logo"` } `json:"team"` Points int `json:"points"` GoalsDiff int `json:"goalsDiff"` Group string `json:"group"` Form string `json:"form"` Status string `json:"status"` Description string `json:"description"` All struct { Played int `json:"played"` Win int `json:"win"` Draw int `json:"draw"` Lose int `json:"lose"` Goals struct { For int `json:"for"` Against int `json:"against"` } `json:"goals"` } `json:"all"` Home struct { Played int `json:"played"` Win int `json:"win"` Draw int `json:"draw"` Lose int `json:"lose"` Goals struct { For int `json:"for"` Against int `json:"against"` } `json:"goals"` } `json:"home"` Away struct { Played int `json:"played"` Win int `json:"win"` Draw int `json:"draw"` Lose int `json:"lose"` Goals struct { For int `json:"for"` Against int `json:"against"` } `json:"goals"` } `json:"away"` Update time.Time `json:"update"` } `json:"standings"` } `json:"league"` } `json:"response"` }
type GetLeaguesResponse ¶
type GetLeaguesResponse struct { Get string `json:"get"` Parameters any `json:"parameters"` Errors any `json:"errors"` Results int `json:"results"` Paging struct { Current int `json:"current"` Total int `json:"total"` } `json:"paging"` Response []struct { League struct { ID int `json:"id"` Name string `json:"name"` Type string `json:"type"` Logo string `json:"logo"` } `json:"league"` Country struct { Name string `json:"name"` Code any `json:"code"` Flag any `json:"flag"` } `json:"country"` Seasons []struct { Year int `json:"year"` Start string `json:"start"` End string `json:"end"` Current bool `json:"current"` Coverage struct { Fixtures struct { Events bool `json:"events"` Lineups bool `json:"lineups"` StatisticsFixtures bool `json:"statistics_fixtures"` StatisticsPlayers bool `json:"statistics_players"` } `json:"fixtures"` Standings bool `json:"standings"` Players bool `json:"players"` TopScorers bool `json:"top_scorers"` TopAssists bool `json:"top_assists"` TopCards bool `json:"top_cards"` Injuries bool `json:"injuries"` Predictions bool `json:"predictions"` Odds bool `json:"odds"` } `json:"coverage"` } `json:"seasons"` } `json:"response"` }
type GetLineUpResponse ¶
type GetLineUpResponse struct { Get string `json:"get"` Parameters struct { Fixture string `json:"fixture"` } `json:"parameters"` Errors []any `json:"errors"` Results int `json:"results"` Paging struct { Current int `json:"current"` Total int `json:"total"` } `json:"paging"` Response []struct { Team struct { ID int `json:"id"` Name string `json:"name"` Logo string `json:"logo"` Colors any `json:"colors"` } `json:"team"` Coach struct { ID int `json:"id"` Name string `json:"name"` Photo string `json:"photo"` } `json:"coach"` Formation string `json:"formation"` StartXI []struct { Player Player `json:"player"` } `json:"startXI"` Substitutes []struct { Player struct { ID int `json:"id"` Name string `json:"name"` Number int `json:"number"` Pos string `json:"pos"` Grid any `json:"grid"` Photo string `json:"photo"` } `json:"player"` } `json:"substitutes"` } `json:"response"` }
type GetMatchesAPIResponse ¶
type GetMatchesAPIResponse struct { Get string `json:"get"` Parameters struct { Date string `json:"date"` } `json:"parameters"` Errors []any `json:"errors"` Results int `json:"results"` Paging struct { Current int `json:"current"` Total int `json:"total"` } `json:"paging"` Response []struct { Fixture struct { ID int `json:"id"` Referee string `json:"referee"` Timezone string `json:"timezone"` Date time.Time `json:"date"` Timestamp int `json:"timestamp"` Periods struct { First int `json:"first"` Second int `json:"second"` } `json:"periods"` Venue struct { ID int `json:"id"` Name string `json:"name"` City string `json:"city"` } `json:"venue"` Status struct { Long string `json:"long"` Short string `json:"short"` Elapsed int `json:"elapsed"` } `json:"status"` } `json:"fixture"` League struct { ID int `json:"id"` Name string `json:"name"` Country string `json:"country"` Logo string `json:"logo"` Flag any `json:"flag"` Season int `json:"season"` Round string `json:"round"` } `json:"league"` Teams struct { Home struct { ID int `json:"id"` Name string `json:"name"` Logo string `json:"logo"` Winner any `json:"winner"` } `json:"home"` Away struct { ID int `json:"id"` Name string `json:"name"` Logo string `json:"logo"` Winner any `json:"winner"` } `json:"away"` } `json:"teams"` Goals struct { Home int `json:"home"` Away int `json:"away"` } `json:"goals"` Score struct { Halftime struct { Home int `json:"home"` Away int `json:"away"` } `json:"halftime"` Fulltime struct { Home int `json:"home"` Away int `json:"away"` } `json:"fulltime"` Extratime struct { Home any `json:"home"` Away any `json:"away"` } `json:"extratime"` Penalty struct { Home any `json:"home"` Away any `json:"away"` } `json:"penalty"` } `json:"score"` } `json:"response"` }
type GetMatchesParams ¶
type GetMatchesParams struct {
Date string
}
type GetSquadResponse ¶
type GetSquadResponse struct { Get string `json:"get"` Parameters struct { Team string `json:"team"` } `json:"parameters"` Errors []any `json:"errors"` Results int `json:"results"` Paging struct { Current int `json:"current"` Total int `json:"total"` } `json:"paging"` Response []struct { Team struct { ID int `json:"id"` Name string `json:"name"` Logo string `json:"logo"` } `json:"team"` Players []Player `json:"players"` } `json:"response"` }
type HealthResponse ¶
type HealthResponse struct {
Message string `json:"message"`
}
Click to show internal directories.
Click to hide internal directories.