From 681ee3cba8e46dc33dd09e1da29c33ecd6c43447 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Abdelkader=20Mart=C3=ADnez=20P=C3=A9rez?= Date: Thu, 3 Oct 2019 14:12:14 +0200 Subject: [PATCH] http becomes an internal package --- internal/client/get.go | 2 +- {http => internal/http}/reason.go | 0 {http => internal/http}/reason_test.go | 0 {http => internal/http}/request.go | 0 {http => internal/http}/request_test.go | 0 5 files changed, 1 insertion(+), 1 deletion(-) rename {http => internal/http}/reason.go (100%) rename {http => internal/http}/reason_test.go (100%) rename {http => internal/http}/request.go (100%) rename {http => internal/http}/request_test.go (100%) diff --git a/internal/client/get.go b/internal/client/get.go index 9d7078b..3903bc6 100644 --- a/internal/client/get.go +++ b/internal/client/get.go @@ -3,7 +3,7 @@ package client import ( "io" - "github.com/BBVA/kapow/http" + "github.com/BBVA/kapow/internal/http" ) //GetData will perform the request and write the results on the provided writer diff --git a/http/reason.go b/internal/http/reason.go similarity index 100% rename from http/reason.go rename to internal/http/reason.go diff --git a/http/reason_test.go b/internal/http/reason_test.go similarity index 100% rename from http/reason_test.go rename to internal/http/reason_test.go diff --git a/http/request.go b/internal/http/request.go similarity index 100% rename from http/request.go rename to internal/http/request.go diff --git a/http/request_test.go b/internal/http/request_test.go similarity index 100% rename from http/request_test.go rename to internal/http/request_test.go