blob: 3f49261ff30395a75c485df4b87543a069cf4f46 [file] [log] [blame]
package networks
import (
"strings"
"github.com/rackspace/gophercloud"
)
func APIVersionsURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL("")
}
func APIInfoURL(c *gophercloud.ServiceClient, version string) string {
return c.ServiceURL(strings.TrimRight(version, "/") + "/")
}