reg/vendor/github.com/docker/docker-ce/components/engine/client/swarm_unlock.go
Jess Frazelle 843aebf2c1
update deps
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-07-14 11:48:41 -04:00

15 lines
362 B
Go

package client // import "github.com/docker/docker/client"
import (
"context"
"github.com/docker/docker/api/types/swarm"
)
// SwarmUnlock unlocks locked swarm.
func (cli *Client) SwarmUnlock(ctx context.Context, req swarm.UnlockRequest) error {
serverResp, err := cli.post(ctx, "/swarm/unlock", nil, req, nil)
ensureReaderClosed(serverResp)
return err
}