code.dwrz.net

Go monorepo.
Log | Files | Refs

document.go (269B)


      1 package smithy
      2 
      3 // Document provides access to loosely structured data in a document-like
      4 // format.
      5 //
      6 // Deprecated: See the github.com/aws/smithy-go/document package.
      7 type Document interface {
      8 	UnmarshalDocument(interface{}) error
      9 	GetValue() (interface{}, error)
     10 }