1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
package registeredlimits
import "github.com/gophercloud/gophercloud"
const (
rootPath = "registered_limits"
enforcementModelPath = "model"
)
func enforcementModelURL(client *gophercloud.ServiceClient) string {
return client.ServiceURL(rootPath, enforcementModelPath)
}
func rootURL(client *gophercloud.ServiceClient) string {
return client.ServiceURL(rootPath)
}
func resourceURL(client *gophercloud.ServiceClient, id string) string {
return client.ServiceURL(rootPath, id)
}
|