1package node
2
3import (
4	"github.com/docker/cli/opts"
5)
6
7type nodeOptions struct {
8	annotations
9	role         string
10	availability string
11}
12
13type annotations struct {
14	labels opts.ListOpts
15}
16
17func newNodeOptions() *nodeOptions {
18	return &nodeOptions{
19		annotations: annotations{
20			labels: opts.NewListOpts(nil),
21		},
22	}
23}
24