Adding URLs for users
diff --git a/openstack/identity/v2/users/urls.go b/openstack/identity/v2/users/urls.go
index 82abcb9..41b3435 100644
--- a/openstack/identity/v2/users/urls.go
+++ b/openstack/identity/v2/users/urls.go
@@ -1 +1,13 @@
package users
+
+import "github.com/rackspace/gophercloud"
+
+const path = "users"
+
+func resourceURL(c *gophercloud.ServiceClient, id string) string {
+ return c.ServiceURL(path, id)
+}
+
+func rootURL(c *gophercloud.ServiceClient) string {
+ return c.ServiceURL(path)
+}