commit | 302c0b60676bfdae134f038dc02c5f68b0da722c | [log] [tgz] |
---|---|---|
author | Jamie Hannaford <jamie.hannaford@rackspace.com> | Mon Feb 16 14:12:34 2015 +0100 |
committer | Jamie Hannaford <jamie.hannaford@rackspace.com> | Wed Oct 14 12:14:37 2015 +0200 |
tree | 3115aa6f1639b3a454736c61dbc446133e69af7b | |
parent | 984e917bf1af87d072e6aa62ed8a92c944318628 [diff] [blame] |
Start work on backups :monkey:
diff --git a/rackspace/db/v1/backups/urls.go b/rackspace/db/v1/backups/urls.go new file mode 100644 index 0000000..553444e --- /dev/null +++ b/rackspace/db/v1/backups/urls.go
@@ -0,0 +1,11 @@ +package backups + +import "github.com/rackspace/gophercloud" + +func baseURL(c *gophercloud.ServiceClient) string { + return c.ServiceURL("backups") +} + +func resourceURL(c *gophercloud.ServiceClient, backupID string) string { + return c.ServiceURL("backups", backupID) +}