Updated the import path so this package can be used as a remote package.

Change-Id: Idfc817b6b2e4fe5e6a8fe9bbac861ef620bec664
This commit is contained in:
Matt Farina 2014-01-02 14:31:27 -05:00
parent 4e73cb07a0
commit fa86cfe9b6
7 changed files with 11 additions and 10 deletions

View File

@ -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.

View File

@ -6,7 +6,7 @@ import (
"encoding/json"
"errors"
"fmt"
"golang-client/misc"
"git.openstack.org/stackforge/golang-client.git/misc"
"io/ioutil"
"strings"
"time"

View File

@ -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"
)

View File

@ -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"

View File

@ -1,7 +1,7 @@
package objectstorage
import (
"golang-client/misc"
"git.openstack.org/stackforge/golang-client.git/misc"
"io/ioutil"
"net/http"
"net/url"

View File

@ -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"
)

View File

@ -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"