mirror of
https://github.com/hashicorp/packer.git
synced 2026-03-04 14:31:33 -05:00
8 lines
200 B
Go
8 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)
|
|
}
|