blob: bd3295ee758c840eea9b5d7ce7053f7f9f1840d1 [file] [log] [blame]
Ash Wilsonc8e68872014-09-16 10:36:56 -04001package pagination
2
3import (
Jon Perritt27249f42016-02-18 10:35:59 -06004 "github.com/gophercloud/gophercloud"
5 "github.com/gophercloud/gophercloud/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}