blob: 9d287602fef98cf50cb278d636617f55d697d184 [file] [log] [blame]
package buildinfo
import "github.com/gophercloud/gophercloud"
// Get retreives data for the given stack template.
func Get(c *gophercloud.ServiceClient) GetResult {
var res GetResult
_, res.Err = c.Get(getURL(c), &res.Body, nil)
return res
}