aboutsummaryrefslogtreecommitdiff
path: root/api/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/client.go')
-rw-r--r--api/client.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/api/client.go b/api/client.go
deleted file mode 100644
index 79c8314..0000000
--- a/api/client.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package api
-
-import (
- "fmt"
- "net/http"
- "time"
-)
-
-type Client struct {
- baseURL string
- httpClient *http.Client
-}
-
-func NewClient(token string) *Client {
- return &Client{
- baseURL: fmt.Sprintf("https://%s@api.sncf.com/v1", token),
- httpClient: &http.Client{
- Timeout: time.Minute,
- },
- }
-}