mirror of
https://github.com/moby/moby.git
synced 2026-08-03 22:51:03 +00:00
Co-Authored-by: Sebastiaan van Stijn <github@gone.nl> Signed-off-by: Josh Chorlton <jchorlton@gmail.com> Signed-off-by: Cory Snider <csnider@mirantis.com> Signed-off-by: Josh Chorlton <jchorlton@gmail.com>
11 lines
269 B
Go
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)
|
|
}
|