diff options
Diffstat (limited to 'navitia_api_client/client.go')
-rw-r--r-- | navitia_api_client/client.go | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/navitia_api_client/client.go b/navitia_api_client/client.go deleted file mode 100644 index aef8d0e..0000000 --- a/navitia_api_client/client.go +++ /dev/null @@ -1,31 +0,0 @@ -package navitia_api_client - -import ( - "fmt" - "net/http" - "sync" - "time" -) - -type Client struct { - baseURL string - httpClient *http.Client - - mutex sync.Mutex - cache map[string]cachedResult -} - -type cachedResult struct { - ts time.Time - result interface{} -} - -func NewClient(token string) *Client { - return &Client{ - baseURL: fmt.Sprintf("https://%s@api.sncf.com/v1", token), - httpClient: &http.Client{ - Timeout: time.Minute, - }, - cache: make(map[string]cachedResult), - } -} |