Merge "Move the service handling to be versioned."

This commit is contained in:
Jenkins 2014-06-11 19:50:07 +00:00 committed by Gerrit Code Review
commit 2b0046f805
5 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ package main
import (
"fmt"
"git.openstack.org/stackforge/golang-client.git/identity"
"git.openstack.org/stackforge/golang-client.git/identity/v2"
"time"
)

View File

@ -18,8 +18,8 @@ import (
"bytes"
"encoding/json"
"fmt"
"git.openstack.org/stackforge/golang-client.git/identity"
"git.openstack.org/stackforge/golang-client.git/objectstorage"
"git.openstack.org/stackforge/golang-client.git/identity/v2"
"git.openstack.org/stackforge/golang-client.git/objectstorage/v1"
"io/ioutil"
"time"
)

View File

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