Jamie Hannaford | 9fdda58 | 2015-02-10 12:15:43 +0100 | [diff] [blame^] | 1 | package instances |
2 | |||||
3 | import "github.com/rackspace/gophercloud" | ||||
4 | |||||
5 | func baseURL(c *gophercloud.ServiceClient) string { | ||||
6 | return c.ServiceURL("instances") | ||||
7 | } | ||||
8 | |||||
9 | func createURL(c *gophercloud.ServiceClient) string { | ||||
10 | return baseURL(c) | ||||
11 | } |