Gitiles
Code Review
Sign In
gerrit.mcp.mirantis.com
/
debian
/
gophercloud
/
3c16647f36d84e060d67bb74880a0c4c5c90c0c5
/
.
/
openstack
/
orchestration
/
v1
/
buildinfo
/
requests.go
blob: 9d287602fef98cf50cb278d636617f55d697d184 [
file
] [
log
] [
blame
]
package buildinfo
import "github.com/gophercloud/gophercloud"
// Get retreives data for the given stack template.
func Get(c *gophercloud.ServiceClient) GetResult {
var res GetResult
_, res.Err = c.Get(getURL(c), &res.Body, nil)
return res
}