blob: d1a649950364ae6873ba8632f7d67ad3fb4174b6 [file] [log] [blame]
Jon Perritta67af872014-09-17 00:50:32 -05001package volumes
2
3import "github.com/rackspace/gophercloud"
4
5func volumesURL(c *gophercloud.ServiceClient) string {
6 return c.ServiceURL("volumes")
7}
8
9func volumeURL(c *gophercloud.ServiceClient, id string) string {
10 return c.ServiceURL("volumes", id)
11}