commit | 1232e042195c2134750f2aa3b867877a6cf6247c | [log] [tgz] |
---|---|---|
author | Jamie Hannaford <jamie.hannaford@rackspace.com> | Tue Feb 10 13:36:32 2015 +0100 |
committer | Jamie Hannaford <jamie.hannaford@rackspace.com> | Wed Oct 14 12:14:35 2015 +0200 |
tree | 73d9eaeda5a12e637b889e61a28eca81aa134774 | |
parent | 5b16b63aa4fed2b01c067d7b758864ace71662e0 [diff] [blame] |
Delegate for delete
diff --git a/rackspace/db/v1/instances/delegate.go b/rackspace/db/v1/instances/delegate.go index 16f1bb1..33e69cf 100644 --- a/rackspace/db/v1/instances/delegate.go +++ b/rackspace/db/v1/instances/delegate.go
@@ -104,3 +104,7 @@ func Get(client *gophercloud.ServiceClient, id string) GetResult { return GetResult{os.Get(client, id)} } + +func Delete(client *gophercloud.ServiceClient, id string) os.DeleteResult { + return os.Delete(client, id) +}