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 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 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. to 1.1.1 only. No external dependencies, so far.

View File

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

View File

@@ -5,8 +5,8 @@
package identity_test package identity_test
import ( import (
"golang-client/identity" "git.openstack.org/stackforge/golang-client.git/identity"
"golang-client/identity/identitytest" "git.openstack.org/stackforge/golang-client.git/identity/identitytest"
"testing" "testing"
"time" "time"
) )

View File

@@ -3,7 +3,7 @@ package misc_test
import ( import (
"bytes" "bytes"
"errors" "errors"
misc "golang-client/misc" "git.openstack.org/stackforge/golang-client.git/misc"
"io/ioutil" "io/ioutil"
"net/http" "net/http"
"net/http/httptest" "net/http/httptest"

View File

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

View File

@@ -3,9 +3,9 @@ package objectstorage_test
import ( import (
"bytes" "bytes"
"encoding/json" "encoding/json"
"golang-client/identity" "git.openstack.org/stackforge/golang-client.git/identity"
"golang-client/identity/identitytest" "git.openstack.org/stackforge/golang-client.git/identity/identitytest"
"golang-client/objectstorage" "git.openstack.org/stackforge/golang-client.git/objectstorage"
"io/ioutil" "io/ioutil"
"testing" "testing"
) )

View File

@@ -2,7 +2,7 @@ package objectstorage_test
import ( import (
"errors" "errors"
"golang-client/objectstorage" "git.openstack.org/stackforge/golang-client.git/objectstorage"
"io/ioutil" "io/ioutil"
"net/http" "net/http"
"net/http/httptest" "net/http/httptest"