blob: 608b25fc7b2a1f098b87cf3eec446f8d28b1697e [file] [log] [blame]
package extensions
import "github.com/rackspace/gophercloud"
const Version = "v2.0"
func ExtensionURL(c *gophercloud.ServiceClient, name string) string {
return c.ServiceURL(Version, "extensions", name)
}
func ListExtensionURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL(Version, "extensions")
}