blob: d30e762f98b36691b04a0f2ff265249f75ffda6d [file] [log] [blame]
Jamie Hannaford9fdda582015-02-10 12:15:43 +01001package instances
2
3import "github.com/rackspace/gophercloud"
4
5func baseURL(c *gophercloud.ServiceClient) string {
6 return c.ServiceURL("instances")
7}
Jamie Hannaford821015f2015-02-10 12:58:36 +01008
9func resourceURL(c *gophercloud.ServiceClient, id string) string {
10 return c.ServiceURL("instances", id)
11}