From fa86cfe9b603a696b4e2177ce549715eba3be6a0 Mon Sep 17 00:00:00 2001 From: Matt Farina Date: Thu, 2 Jan 2014 14:31:27 -0500 Subject: [PATCH] Updated the import path so this package can be used as a remote package. Change-Id: Idfc817b6b2e4fe5e6a8fe9bbac861ef620bec664 --- README.md | 3 ++- identity/auth.go | 2 +- identity/auth_integration_test.go | 4 ++-- misc/util_test.go | 2 +- objectstorage/objectstorage.go | 2 +- objectstorage/objectstorage_integration_test.go | 6 +++--- objectstorage/objectstorage_test.go | 2 +- 7 files changed, 11 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e251af8..7971817 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,8 @@ Code maturity is considered experimental. Installation ------------ -Use `go get`. Or alternatively, download or clone the repository. +Use `go get git.openstack.org/stackforge/golang-client.git`. Or alternatively, +download or clone the repository. The lib was developed and tested on go 1.0.3 and 1.1.1, but maintenance has moved to 1.1.1 only. No external dependencies, so far. diff --git a/identity/auth.go b/identity/auth.go index 0aecd3a..dd92f13 100644 --- a/identity/auth.go +++ b/identity/auth.go @@ -6,7 +6,7 @@ import ( "encoding/json" "errors" "fmt" - "golang-client/misc" + "git.openstack.org/stackforge/golang-client.git/misc" "io/ioutil" "strings" "time" diff --git a/identity/auth_integration_test.go b/identity/auth_integration_test.go index 4ff0fa8..ce74b46 100644 --- a/identity/auth_integration_test.go +++ b/identity/auth_integration_test.go @@ -5,8 +5,8 @@ package identity_test import ( - "golang-client/identity" - "golang-client/identity/identitytest" + "git.openstack.org/stackforge/golang-client.git/identity" + "git.openstack.org/stackforge/golang-client.git/identity/identitytest" "testing" "time" ) diff --git a/misc/util_test.go b/misc/util_test.go index 7c3c4df..6a66777 100644 --- a/misc/util_test.go +++ b/misc/util_test.go @@ -3,7 +3,7 @@ package misc_test import ( "bytes" "errors" - misc "golang-client/misc" + "git.openstack.org/stackforge/golang-client.git/misc" "io/ioutil" "net/http" "net/http/httptest" diff --git a/objectstorage/objectstorage.go b/objectstorage/objectstorage.go index 76521d3..fb50037 100644 --- a/objectstorage/objectstorage.go +++ b/objectstorage/objectstorage.go @@ -1,7 +1,7 @@ package objectstorage import ( - "golang-client/misc" + "git.openstack.org/stackforge/golang-client.git/misc" "io/ioutil" "net/http" "net/url" diff --git a/objectstorage/objectstorage_integration_test.go b/objectstorage/objectstorage_integration_test.go index 3832d14..713ad8b 100644 --- a/objectstorage/objectstorage_integration_test.go +++ b/objectstorage/objectstorage_integration_test.go @@ -3,9 +3,9 @@ package objectstorage_test import ( "bytes" "encoding/json" - "golang-client/identity" - "golang-client/identity/identitytest" - "golang-client/objectstorage" + "git.openstack.org/stackforge/golang-client.git/identity" + "git.openstack.org/stackforge/golang-client.git/identity/identitytest" + "git.openstack.org/stackforge/golang-client.git/objectstorage" "io/ioutil" "testing" ) diff --git a/objectstorage/objectstorage_test.go b/objectstorage/objectstorage_test.go index e4ac30e..5f3e311 100644 --- a/objectstorage/objectstorage_test.go +++ b/objectstorage/objectstorage_test.go @@ -2,7 +2,7 @@ package objectstorage_test import ( "errors" - "golang-client/objectstorage" + "git.openstack.org/stackforge/golang-client.git/objectstorage" "io/ioutil" "net/http" "net/http/httptest"