blob: 41b3435564c2b558770347f97dc95761a734eb6c [file] [log] [blame]
Jamie Hannaford2a130242014-10-28 11:19:46 +01001package users
Jamie Hannafordb319d472014-10-29 10:57:22 +01002
3import "github.com/rackspace/gophercloud"
4
5const path = "users"
6
7func resourceURL(c *gophercloud.ServiceClient, id string) string {
8 return c.ServiceURL(path, id)
9}
10
11func rootURL(c *gophercloud.ServiceClient) string {
12 return c.ServiceURL(path)
13}