blob: 85443a48a0944d719772ee70fa47c884a9dd94c1 [file] [log] [blame]
Ash Wilsonb73b7f82014-08-29 15:38:06 -04001package services
2
3import "github.com/rackspace/gophercloud"
4
Ash Wilson1e1b7332014-09-30 16:38:11 -04005func listURL(client *gophercloud.ServiceClient) string {
Ash Wilsonb73b7f82014-08-29 15:38:06 -04006 return client.ServiceURL("services")
7}
8
Ash Wilson1e1b7332014-09-30 16:38:11 -04009func serviceURL(client *gophercloud.ServiceClient, serviceID string) string {
Ash Wilson6e870032014-09-02 08:38:27 -040010 return client.ServiceURL("services", serviceID)
Ash Wilsonb73b7f82014-08-29 15:38:06 -040011}