blob: 2d9a563d911731ea5f2fcb5739596ddc67851528 [file] [log] [blame]
Ash Wilson61dcb022014-10-03 08:15:47 -04001package extensions
2
3import "github.com/rackspace/gophercloud"
4
Ash Wilson61dcb022014-10-03 08:15:47 -04005func extensionURL(c *gophercloud.ServiceClient, name string) string {
Ash Wilsona4931872014-10-03 15:55:35 -04006 return c.ServiceURL("extensions", name)
Ash Wilson61dcb022014-10-03 08:15:47 -04007}
8
9func listExtensionURL(c *gophercloud.ServiceClient) string {
Ash Wilsona4931872014-10-03 15:55:35 -040010 return c.ServiceURL("extensions")
Ash Wilson61dcb022014-10-03 08:15:47 -040011}