mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-21 07:21:40 -04:00
9 lines
200 B
Go
9 lines
200 B
Go
package smithy
|
|
|
|
// Document provides access to loosely structured data in a document-like
|
|
// format.
|
|
type Document interface {
|
|
UnmarshalDocument(interface{}) error
|
|
GetValue() (interface{}, error)
|
|
}
|