2021-04-06 13:52:07 -07:00

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)
}