blob: 553444e885252f31a36a8eb73552990a2357664e [file] [log] [blame]
Jamie Hannaford302c0b62015-02-16 14:12:34 +01001package backups
2
3import "github.com/rackspace/gophercloud"
4
5func baseURL(c *gophercloud.ServiceClient) string {
6 return c.ServiceURL("backups")
7}
8
9func resourceURL(c *gophercloud.ServiceClient, backupID string) string {
10 return c.ServiceURL("backups", backupID)
11}