Dan Kirkwood | c0a8099 | 2016-03-07 13:47:25 -0700 | [diff] [blame] | 1 | package quotasets |
Dan Kirkwood | ceb8409 | 2016-03-01 13:58:34 -0700 | [diff] [blame] | 2 | |
| 3 | import "github.com/rackspace/gophercloud" |
| 4 | |
| 5 | const resourcePath = "os-quota-sets" |
| 6 | |
| 7 | func resourceURL(c *gophercloud.ServiceClient) string { |
| 8 | return c.ServiceURL(resourcePath) |
| 9 | } |
| 10 | |
Dan Kirkwood | b068825 | 2016-03-07 13:28:50 -0700 | [diff] [blame] | 11 | func getURL(c *gophercloud.ServiceClient, tenantID string) string { |
| 12 | return c.ServiceURL(resourcePath, tenantID) |
Dan Kirkwood | ceb8409 | 2016-03-01 13:58:34 -0700 | [diff] [blame] | 13 | } |