rename imports: rackspace/gophercloud -> gophercloud/gophercloud
diff --git a/pagination/http.go b/pagination/http.go
index 1b3fe94..db31b55 100644
--- a/pagination/http.go
+++ b/pagination/http.go
@@ -7,7 +7,7 @@
"net/url"
"strings"
- "github.com/rackspace/gophercloud"
+ "github.com/gophercloud/gophercloud"
)
// PageResult stores the HTTP response that returned the current page of results.
diff --git a/pagination/linked_test.go b/pagination/linked_test.go
index 1ac0f73..2ee5aba 100644
--- a/pagination/linked_test.go
+++ b/pagination/linked_test.go
@@ -7,7 +7,7 @@
"testing"
"github.com/mitchellh/mapstructure"
- "github.com/rackspace/gophercloud/testhelper"
+ "github.com/gophercloud/gophercloud/testhelper"
)
// LinkedPager sample and test cases.
diff --git a/pagination/marker_test.go b/pagination/marker_test.go
index f4d55be..4ade8d3 100644
--- a/pagination/marker_test.go
+++ b/pagination/marker_test.go
@@ -6,7 +6,7 @@
"strings"
"testing"
- "github.com/rackspace/gophercloud/testhelper"
+ "github.com/gophercloud/gophercloud/testhelper"
)
// MarkerPager sample and test cases.
diff --git a/pagination/pager.go b/pagination/pager.go
index a7593ac..ce66a04 100644
--- a/pagination/pager.go
+++ b/pagination/pager.go
@@ -7,7 +7,7 @@
"reflect"
"strings"
- "github.com/rackspace/gophercloud"
+ "github.com/gophercloud/gophercloud"
)
var (
diff --git a/pagination/pagination_test.go b/pagination/pagination_test.go
index f3e4de1..bd3295e 100644
--- a/pagination/pagination_test.go
+++ b/pagination/pagination_test.go
@@ -1,8 +1,8 @@
package pagination
import (
- "github.com/rackspace/gophercloud"
- "github.com/rackspace/gophercloud/testhelper"
+ "github.com/gophercloud/gophercloud"
+ "github.com/gophercloud/gophercloud/testhelper"
)
func createClient() *gophercloud.ServiceClient {
diff --git a/pagination/single_test.go b/pagination/single_test.go
index 4af0fee..b5874cc 100644
--- a/pagination/single_test.go
+++ b/pagination/single_test.go
@@ -6,7 +6,7 @@
"testing"
"github.com/mitchellh/mapstructure"
- "github.com/rackspace/gophercloud/testhelper"
+ "github.com/gophercloud/gophercloud/testhelper"
)
// SinglePage sample and test cases.