github.com/gophercloud/gophercloud@v1.11.0/openstack/orchestration/v1/buildinfo/requests.go (about)

     1  package buildinfo
     2  
     3  import "github.com/gophercloud/gophercloud"
     4  
     5  // Get retreives data for the given stack template.
     6  func Get(c *gophercloud.ServiceClient) (r GetResult) {
     7  	resp, err := c.Get(getURL(c), &r.Body, nil)
     8  	_, r.Header, r.Err = gophercloud.ParseResponse(resp, err)
     9  	return
    10  }