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

import (
	"github.com/urfave/cli"
)

var (
	podDescription = `
   podman pod

   manage pods
`
	podCommand = cli.Command{
		Name:                   "pod",
		Usage:                  "Manage pods",
		Description:            podDescription,
		UseShortOptionHandling: true,
		Subcommands: []cli.Command{
			podCreateCommand,
			podPsCommand,
			podRmCommand,
		},
	}
)