mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-30 13:51:30 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
13 lines
336 B
Go
13 lines
336 B
Go
package docker // import "docker.io/go-docker"
|
|
|
|
import (
|
|
"docker.io/go-docker/api/types/swarm"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// SwarmJoin joins the swarm.
|
|
func (cli *Client) SwarmJoin(ctx context.Context, req swarm.JoinRequest) error {
|
|
resp, err := cli.post(ctx, "/swarm/join", nil, req, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|