blob: c30b7ca1afedd96112246241d666ea6a131ddbe0 [file] [log] [blame]
Jon Perrittf799b942015-02-09 11:23:28 -07001package stacktemplates
2
3import "github.com/rackspace/gophercloud"
4
5func getURL(c *gophercloud.ServiceClient, stackName, stackID string) string {
6 return c.ServiceURL("stacks", stackName, stackID, "template")
7}
8
9func validateURL(c *gophercloud.ServiceClient) string {
10 return c.ServiceURL("validate")
11}