terraform/helper/schema/resource_data.go

10 lines
258 B
Go
Raw Normal View History

2014-08-13 23:23:22 +02:00
package schema
// ResourceData is used to query and set the attributes of a resource.
type ResourceData struct{}
2014-08-15 04:55:47 +02:00
// Get returns the data for the given key, or nil if the key doesn't exist.
func (d *ResourceData) Get(key string) interface{} {
return nil
}