summaryrefslogtreecommitdiff
path: root/cmd/podman/container.go
blob: 969cb2dc8b3a6cf97f2a77949700d188b6bb90d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package main

import (
	"github.com/containers/libpod/cmd/podman/cliconfig"
	"github.com/spf13/cobra"
)

var containerDescription = "Manage containers"
var containerCommand = cliconfig.PodmanCommand{
	Command: &cobra.Command{
		Use:              "container",
		Short:            "Manage Containers",
		Long:             containerDescription,
		TraverseChildren: true,
	},
}

func init() {
	containerCommand.AddCommand(getContainerSubCommands()...)
	rootCmd.AddCommand(containerCommand.Command)
}