blob: 41603510d62aaa883286346336450756815c4a62 [file] [log] [blame]
Jamie Hannaford5d6b8752014-10-09 10:25:09 +02001package common
2
3import (
4 "github.com/rackspace/gophercloud"
5 "github.com/rackspace/gophercloud/testhelper/client"
6)
7
8const TokenID = client.TokenID
9
10func ServiceClient() *gophercloud.ServiceClient {
11 sc := client.ServiceClient()
12 sc.ResourceBase = sc.Endpoint + "v2.0/"
13 return sc
14}