1package iso
2
3import (
4	"github.com/hetznercloud/cli/internal/state"
5	"github.com/spf13/cobra"
6)
7
8func NewCommand(cli *state.State) *cobra.Command {
9	cmd := &cobra.Command{
10		Use:                   "iso",
11		Short:                 "Manage ISOs",
12		Args:                  cobra.NoArgs,
13		TraverseChildren:      true,
14		DisableFlagsInUseLine: true,
15	}
16	cmd.AddCommand(
17		newListCommand(cli),
18		newDescribeCommand(cli),
19	)
20	return cmd
21}
22