mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
10 lines
204 B
Go
10 lines
204 B
Go
package client
|
|
|
|
import "github.com/moby/moby/api/types/swarm"
|
|
|
|
// NodeUpdateOptions holds parameters to update nodes with.
|
|
type NodeUpdateOptions struct {
|
|
Version swarm.Version
|
|
Node swarm.NodeSpec
|
|
}
|