mirror of
https://github.com/terraform-docs/terraform-docs.git
synced 2026-03-27 12:58:35 +07:00
18 lines
312 B
Go
18 lines
312 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var yamlCmd = &cobra.Command{
|
|
Args: cobra.ExactArgs(1),
|
|
Use: "yaml [PATH]",
|
|
Short: "Generate YAML of inputs and outputs",
|
|
Annotations: formatAnnotations("yaml"),
|
|
RunE: formatRunE,
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(yamlCmd)
|
|
}
|