Files
terraform-docs/cmd/xml.go
2020-04-10 19:08:37 -04:00

18 lines
307 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var xmlCmd = &cobra.Command{
Args: cobra.ExactArgs(1),
Use: "xml [PATH]",
Short: "Generate XML of inputs and outputs",
Annotations: formatAnnotations("xml"),
RunE: formatRunE,
}
func init() {
rootCmd.AddCommand(xmlCmd)
}