blob: c834e5c7d39b53edb604261ddf1ef5236805a232 [file] [log] [blame]
Jon Perrittefe6d1f2015-02-09 12:04:06 -07001package buildinfo
2
3import (
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.
9func Get(c *gophercloud.ServiceClient) os.GetResult {
10 return os.Get(c)
11}