blob: 6068867c9d7ce48800483cf70c31f497618100bc [file] [log] [blame]
Jon Perrittefe6d1f2015-02-09 12:04:06 -07001package buildinfo
2
Ash Wilsondecfed72015-02-13 09:14:55 -05003import "github.com/rackspace/gophercloud"
Jon Perrittefe6d1f2015-02-09 12:04:06 -07004
5// Get retreives data for the given stack template.
6func Get(c *gophercloud.ServiceClient) GetResult {
7 var res GetResult
Ash Wilsondecfed72015-02-13 09:14:55 -05008 _, res.Err = c.Request("GET", getURL(c), gophercloud.RequestOpts{
9 JSONResponse: &res.Body,
Jon Perrittefe6d1f2015-02-09 12:04:06 -070010 })
11 return res
12}