(_ context.Context, options client.SwarmUnlockOptions)
| 80 | } |
| 81 | |
| 82 | func (cli *fakeClient) SwarmUnlock(_ context.Context, options client.SwarmUnlockOptions) (client.SwarmUnlockResult, error) { |
| 83 | if cli.swarmUnlockFunc != nil { |
| 84 | return cli.swarmUnlockFunc(options) |
| 85 | } |
| 86 | return client.SwarmUnlockResult{}, nil |
| 87 | } |