Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jdheyburn/go-tflapi
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.0
Choose a base ref
...
head repository: jdheyburn/go-tflapi
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Sep 2, 2020

  1. Fix interface

    jdheyburn committed Sep 2, 2020
    Copy the full SHA
    de18460 View commit details
  2. Fix go.mod

    jdheyburn committed Sep 2, 2020
    Copy the full SHA
    14b0c96 View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 client.go
  2. +1 −1 go.mod
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
@@ -63,7 +63,7 @@ type Api interface {
SearchStopPointsWithModes(string, []string) (*[]EntityMatchedStop, error)
GetStopPointForID(string) (*StopPointAPIResponse, error)
GetJourneyPlannerItinerary(JourneyPlannerQuery) (*JourneyPlannerItineraryResult, error)
SingleFareFinder(SingleFareFinderInput) (*FaresSection, error)
SingleFareFinder(SingleFareFinderInput) (*[]FaresSection, error)
}

// Client holds information necessary to make a request to your API
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module go-tflapi
module github.com/jdheyburn/go-tflapi

go 1.14