1234567891011121314 |
- package client // import "github.com/docker/docker/client"
- import (
- "context"
- "github.com/docker/docker/api/types/swarm"
- )
- // 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
- }
|