mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-27 09:21:14 -06:00
10 lines
259 B
Go
10 lines
259 B
Go
package terraform
|
|
|
|
import "github.com/hashicorp/terraform/dag"
|
|
|
|
// GraphDot returns the dot formatting of a visual representation of
|
|
// the given Terraform graph.
|
|
func GraphDot(g *Graph, opts *dag.DotOpts) (string, error) {
|
|
return string(g.Dot(opts)), nil
|
|
}
|