From dbb4167a49343defa8be01921c3943d7eeb8b9dd Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Mon, 29 Mar 2021 00:07:03 +0200 Subject: Renamed the api folder to something more specific --- api/departures.go | 59 ------------------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 api/departures.go (limited to 'api/departures.go') diff --git a/api/departures.go b/api/departures.go deleted file mode 100644 index b87e35b..0000000 --- a/api/departures.go +++ /dev/null @@ -1,59 +0,0 @@ -package api - -import ( - "encoding/json" - "fmt" - "net/http" -) - -type DeparturesResponse struct { - Disruptions []interface{} `json:"disruptions"` - Notes []interface{} `json:"notes"` - Departures []struct { - DisplayInformations struct { - Direction string `json:"direction"` - Code string `json:"code"` - Network string `json:"network"` - Links []interface{} `json:"links"` - Color string `json:"color"` - Name string `json:"name"` - PhysicalMode string `json:"physical_mode"` - Headsign string `json:"headsign"` - Label string `json:"label"` - Equipments []interface{} `json:"equipments"` - TextColor string `json:"text_color"` - TripShortName string `json:"trip_short_name"` - CommercialMode string `json:"commercial_mode"` - Description string `json:"description"` - } `json:"display_informations"` - StopDateTime struct { - Links []interface{} `json:"links"` - ArrivalDateTime string `json:"arrival_date_time"` - AdditionalInformations []interface{} `json:"additional_informations"` - DepartureDateTime string `json:"departure_date_time"` - BaseArrivalDateTime string `json:"base_arrival_date_time"` - BaseDepartureDateTime string `json:"base_departure_date_time"` - DataFreshness string `json:"data_freshness"` - } `json:"stop_date_time"` - } `json:"departures"` - Context struct { - Timezone string `json:"timezone"` - CurrentDatetime string `json:"current_datetime"` - } `json:"context"` -} - -func (c *Client) GetDepartures() (departures *DeparturesResponse, err error) { - req, err := http.NewRequest("GET", fmt.Sprintf("%s/coverage/sncf/stop_areas/stop_area:SNCF:87723502/departures", c.baseURL), nil) - if err != nil { - return nil, err - } - resp, err := c.httpClient.Do(req) - if err != nil { - return nil, err - } - defer resp.Body.Close() - if err = json.NewDecoder(resp.Body).Decode(&departures); err != nil { - return nil, err - } - return -} -- cgit v1.2.3