mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-25 09:50:31 +00:00
14 lines
361 B
Go
14 lines
361 B
Go
|
package docker // import "docker.io/go-docker"
|
||
|
|
||
|
import (
|
||
|
"docker.io/go-docker/api/types/swarm"
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
// 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
|
||
|
}
|