Conver to regular Go vendor + dep tool

This commit is contained in:
Andrey Smirnov
2017-03-22 17:38:32 +03:00
parent 070347295e
commit c6c1012330
3260 changed files with 1742550 additions and 72 deletions
+11
View File
@@ -0,0 +1,11 @@
package simpledb
import "github.com/aws/aws-sdk-go/aws/client"
func init() {
initClient = func(c *client.Client) {
// SimpleDB uses custom error unmarshaling logic
c.Handlers.UnmarshalError.Clear()
c.Handlers.UnmarshalError.PushBack(unmarshalError)
}
}