Jon Perritt | efe6d1f | 2015-02-09 12:04:06 -0700 | [diff] [blame] | 1 | package buildinfo |
| 2 | |
Ash Wilson | decfed7 | 2015-02-13 09:14:55 -0500 | [diff] [blame] | 3 | import "github.com/rackspace/gophercloud" |
Jon Perritt | efe6d1f | 2015-02-09 12:04:06 -0700 | [diff] [blame] | 4 | |
| 5 | // Get retreives data for the given stack template. |
| 6 | func Get(c *gophercloud.ServiceClient) GetResult { |
| 7 | var res GetResult |
Jamie Hannaford | 1d27afa | 2015-03-24 16:20:45 +0100 | [diff] [blame^] | 8 | _, res.Err = c.Get(getURL(c), &res.Body, nil) |
Jon Perritt | efe6d1f | 2015-02-09 12:04:06 -0700 | [diff] [blame] | 9 | return res |
| 10 | } |