Jon Perritt | 8c4327f | 2014-09-21 23:35:47 -0500 | [diff] [blame^] | 1 | package snapshots |
2 | |||||
3 | import "github.com/rackspace/gophercloud" | ||||
4 | |||||
5 | func snapshotsURL(c *gophercloud.ServiceClient) string { | ||||
6 | return c.ServiceURL("snapshots") | ||||
7 | } | ||||
8 | |||||
9 | func snapshotURL(c *gophercloud.ServiceClient, id string) string { | ||||
10 | return c.ServiceURL("snapshots", id) | ||||
11 | } |