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

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

var generateDescription = "Generate structured data based for a containers and pods"
var generateCommand = cliconfig.PodmanCommand{

	Command: &cobra.Command{
		Use:   "generate",
		Short: "Generated structured data",
		Long:  generateDescription,
	},
}

func init() {
	generateCommand.AddCommand(getGenerateSubCommands()...)
}