blob: aba42c9c879d1ac152a5a259ea78b330d1a1eefc [file] [log] [blame]
package databases
import "github.com/gophercloud/gophercloud"
func baseURL(c *gophercloud.ServiceClient, instanceID string) string {
return c.ServiceURL("instances", instanceID, "databases")
}
func dbURL(c *gophercloud.ServiceClient, instanceID, dbName string) string {
return c.ServiceURL("instances", instanceID, "databases", dbName)
}