blob: ed8b72e2842d94441b5592b2a8241425a6e12a7e [file] [log] [blame]
jrperritt3d966162016-06-06 14:08:54 -05001package testing
Ash Wilsonc8e68872014-09-16 10:36:56 -04002
3import (
Krzysztof Szukiełojć3f41d082017-05-07 14:43:06 +02004 "gerrit.mcp.mirantis.net/debian/gophercloud.git"
Krzysztof Szukiełojć24a29ce2017-05-07 14:24:02 +02005 "gerrit.mcp.mirantis.net/debian/gophercloud.git/testhelper"
Ash Wilsonc8e68872014-09-16 10:36:56 -04006)
7
8func createClient() *gophercloud.ServiceClient {
9 return &gophercloud.ServiceClient{
Ash Wilson92c380c2014-10-22 09:14:53 -040010 ProviderClient: &gophercloud.ProviderClient{TokenID: "abc123"},
11 Endpoint: testhelper.Endpoint(),
Ash Wilsonc8e68872014-09-16 10:36:56 -040012 }
13}