Jamie Hannaford | 2a13024 | 2014-10-28 11:19:46 +0100 | [diff] [blame] | 1 | package users |
Jamie Hannaford | b319d47 | 2014-10-29 10:57:22 +0100 | [diff] [blame^] | 2 | |
3 | import "github.com/rackspace/gophercloud" | ||||
4 | |||||
5 | const path = "users" | ||||
6 | |||||
7 | func resourceURL(c *gophercloud.ServiceClient, id string) string { | ||||
8 | return c.ServiceURL(path, id) | ||||
9 | } | ||||
10 | |||||
11 | func rootURL(c *gophercloud.ServiceClient) string { | ||||
12 | return c.ServiceURL(path) | ||||
13 | } |