blob: c0c1bad5691c2116708f9861b7e5cf793369486e [file] [log] [blame]
Jamie Hannaford2a4beaa2015-02-09 17:27:18 +01001package instances
2
3import "github.com/rackspace/gophercloud"
4
5func baseURL(c *gophercloud.ServiceClient) string {
6 return c.ServiceURL("instances")
7}
8
9func createURL(c *gophercloud.ServiceClient) string {
10 return baseURL(c)
11}
Jamie Hannaford936a5472015-02-10 14:38:28 +010012
13func configURL(c *gophercloud.ServiceClient) string {
14 return c.ServiceURL("instances", id, "configuration")
15}