Files
buildx/vendor/github.com/aws/smithy-go/document.go
2022-08-30 17:00:15 +02:00

11 lines
269 B
Go

package smithy
// Document provides access to loosely structured data in a document-like
// format.
//
// Deprecated: See the github.com/aws/smithy-go/document package.
type Document interface {
UnmarshalDocument(interface{}) error
GetValue() (interface{}, error)
}