blob: 0c6e67fdfe94ef8ce97054fa3a6d56c5fe22ec20 [file] [log] [blame]
Dan Kirkwoodceb84092016-03-01 13:58:34 -07001package quotas
2
3import "github.com/rackspace/gophercloud"
4
5const resourcePath = "os-quota-sets"
6
7func resourceURL(c *gophercloud.ServiceClient) string {
8 return c.ServiceURL(resourcePath)
9}
10
Dan Kirkwoodb0688252016-03-07 13:28:50 -070011func getURL(c *gophercloud.ServiceClient, tenantID string) string {
12 return c.ServiceURL(resourcePath, tenantID)
Dan Kirkwoodceb84092016-03-01 13:58:34 -070013}