Jon Perritt | efe6d1f | 2015-02-09 12:04:06 -0700 | [diff] [blame] | 1 | package buildinfo |
2 | |||||
3 | import ( | ||||
4 | "github.com/rackspace/gophercloud" | ||||
5 | os "github.com/rackspace/gophercloud/openstack/orchestration/v1/buildinfo" | ||||
6 | ) | ||||
7 | |||||
8 | // Get retreives build info data for the Heat deployment. | ||||
9 | func Get(c *gophercloud.ServiceClient) os.GetResult { | ||||
10 | return os.Get(c) | ||||
11 | } |