blob: 60f5bd135e99e922e57c54422b25765dbd7f8029 [file] [log] [blame]
package volumes
import "github.com/rackspace/gophercloud"
func volumesURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL("volumes")
}
func volumeURL(c *gophercloud.ServiceClient, id string) string {
return c.ServiceURL("volumes", id)
}
func snapshotsURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL("snapshots")
}
func snapshotURL(c *gophercloud.ServiceClient, id string) string {
return c.ServiceURL("snapshots", id)
}