summaryrefslogtreecommitdiff
path: root/internal/easyhttp
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-08-12 10:41:11 +0300
committerPaul Buetow <paul@buetow.org>2024-08-12 10:41:11 +0300
commitb79de37224b40374cd0bc17881b3677138c44935 (patch)
tree94db4343ed6ae9dfc35c820f81a0b862d6e8e652 /internal/easyhttp
parent29705a8e5aad0c5edd4ed720e5c4b5d58a91c6e6 (diff)
initially can merge from remote partner but file to disk sync doesn't work yet maybe next time when i work on this this will be sorted.
Diffstat (limited to 'internal/easyhttp')
-rw-r--r--internal/easyhttp/easyhttp.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/easyhttp/easyhttp.go b/internal/easyhttp/easyhttp.go
index 3f4b367..2968454 100644
--- a/internal/easyhttp/easyhttp.go
+++ b/internal/easyhttp/easyhttp.go
@@ -40,7 +40,6 @@ func Get(ctx context.Context, uri, apiKey string) ([]byte, error) {
// Get data from JSON
func GetData[T any](ctx context.Context, uri, apiKey string, data *T) error {
- log.Println("Getting data from ", uri)
bytes, err := Get(ctx, uri, apiKey)
if err != nil {
return err