Remove duplication
diff --git a/rackspace/db/v1/backups/results.go b/rackspace/db/v1/backups/results.go
index 89f1fc6..475a41d 100644
--- a/rackspace/db/v1/backups/results.go
+++ b/rackspace/db/v1/backups/results.go
@@ -4,14 +4,9 @@
"github.com/mitchellh/mapstructure"
"github.com/rackspace/gophercloud"
"github.com/rackspace/gophercloud/pagination"
+ "github.com/rackspace/gophercloud/rackspace/db/v1/datastores"
)
-type Datastore struct {
- Version string
- Type string
- VersionID string `json:"version_id" mapstructure:"version_id"`
-}
-
type Backup struct {
Description string
ID string
@@ -23,7 +18,7 @@
Status string
Created string
Updated string
- Datastore Datastore
+ Datastore datastores.Datastore
}
type CreateResult struct {