From 83a4472d4ec33881d7b80ab941960492d0adc312 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Mon, 20 Oct 2014 02:05:52 +0000 Subject: [PATCH] Put client inside its own package This will let me do things like import "github.com/google/cadvisor/client" without needing to include all of cadvisor in my project --- client/client.go | 2 +- client/client_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/client.go b/client/client.go index e973794f..c1117d23 100644 --- a/client/client.go +++ b/client/client.go @@ -13,7 +13,7 @@ // limitations under the License. // TODO(cAdvisor): Package comment. -package cadvisor +package client import ( "bytes" diff --git a/client/client_test.go b/client/client_test.go index f05682b2..35a75adb 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package cadvisor +package client import ( "encoding/json"