diff --git a/glide.lock b/glide.lock index 2cbcfa367..c41b67ee6 100644 --- a/glide.lock +++ b/glide.lock @@ -1,5 +1,5 @@ hash: b555054a6f86ac84f6104ad9efabdcd85966c8f6574e485be7337c3ee9f29aa0 -updated: 2017-08-16T11:13:27.488480563-07:00 +updated: 2017-08-18T21:27:39.98453555+03:00 imports: - name: github.com/amir/raidman version: 1ccc43bfb9c93cb401a4025e49c64ba71e5e668b @@ -116,15 +116,13 @@ imports: - name: github.com/fsouza/go-dockerclient version: 75772940379e725b5aae213e570f9dcd751951cb - name: github.com/funcy/functions_go - version: fc7e7ca2fbc8bef236300b7b9f1075410a62447f + version: e046aa4ca1f1028a04fc51395297ff07515cb0b6 subpackages: - client - client/apps - client/call - client/operations - client/routes - - client/tasks - - client/version - models - name: github.com/garyburd/redigo version: b925df3cc15d8646e9b5b333ebaf3011385aba11 diff --git a/vendor/github.com/funcy/functions_go/VERSION b/vendor/github.com/funcy/functions_go/VERSION index d3662a8dd..f37372d37 100644 --- a/vendor/github.com/funcy/functions_go/VERSION +++ b/vendor/github.com/funcy/functions_go/VERSION @@ -1 +1 @@ -0.1.36 \ No newline at end of file +0.1.37 \ No newline at end of file diff --git a/vendor/github.com/funcy/functions_go/client/functions_client.go b/vendor/github.com/funcy/functions_go/client/functions_client.go index 7604c416e..ac2259094 100644 --- a/vendor/github.com/funcy/functions_go/client/functions_client.go +++ b/vendor/github.com/funcy/functions_go/client/functions_client.go @@ -15,8 +15,6 @@ import ( "github.com/funcy/functions_go/client/call" "github.com/funcy/functions_go/client/operations" "github.com/funcy/functions_go/client/routes" - "github.com/funcy/functions_go/client/tasks" - "github.com/funcy/functions_go/client/version" ) // Default functions HTTP client. @@ -68,10 +66,6 @@ func New(transport runtime.ClientTransport, formats strfmt.Registry) *Functions cli.Routes = routes.New(transport, formats) - cli.Tasks = tasks.New(transport, formats) - - cli.Version = version.New(transport, formats) - return cli } @@ -124,10 +118,6 @@ type Functions struct { Routes *routes.Client - Tasks *tasks.Client - - Version *version.Client - Transport runtime.ClientTransport } @@ -143,8 +133,4 @@ func (c *Functions) SetTransport(transport runtime.ClientTransport) { c.Routes.SetTransport(transport) - c.Tasks.SetTransport(transport) - - c.Version.SetTransport(transport) - }