| Jon Perritt | 034ef07 | 2015-02-03 13:14:44 -0700 | [diff] [blame] | 1 | package stacks |
| 2 | |||||
| 3 | import ( | ||||
| 4 | "github.com/rackspace/gophercloud" | ||||
| 5 | os "github.com/rackspace/gophercloud/openstack/orchestration/v1/stacks" | ||||
| 6 | ) | ||||
| 7 | |||||
| 8 | // Create accepts an os.CreateOpts struct and creates a new stack using the values | ||||
| 9 | // provided. | ||||
| 10 | func Create(c *gophercloud.ServiceClient, opts os.CreateOptsBuilder) os.CreateResult { | ||||
| 11 | return os.Create(c, opts) | ||||
| 12 | } | ||||