func GetTfCommand()

in mpdev/cmd/tfcmd.go [24:33]


func GetTfCommand() *cobra.Command {
	cmd := &cobra.Command{
		Use:   "tf",
		Short: docs.TfShort,
		Long:  docs.TfLong,
	}

	cmd.AddCommand(tf.GetOverwriteCommand())
	return cmd
}