mirror of
https://github.com/terraform-docs/terraform-docs.git
synced 2026-03-27 04:48:33 +07:00
18 lines
307 B
Go
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)
|
|
}
|