Move the service handling to be versioned.

implements blueprint golang-multi-version

Change-Id: I77e31118a64140b5d1780725c0a35e2f5d55221c
This commit is contained in:
Matt Farina 2014-06-05 14:10:43 -04:00
parent 5f5601e718
commit 088f14907c
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"