blob: c129185d7c855eb1a3fbe4ed73a97924563608af [file] [log] [blame]
Jon Perritt8c4327f2014-09-21 23:35:47 -05001package snapshots
2
3import "github.com/rackspace/gophercloud"
4
5func snapshotsURL(c *gophercloud.ServiceClient) string {
6 return c.ServiceURL("snapshots")
7}
8
9func snapshotURL(c *gophercloud.ServiceClient, id string) string {
10 return c.ServiceURL("snapshots", id)
11}