github.com/beauknowssoftware/makehcl@v0.0.0-20200322000747-1b9bb1e1c008/internal/graph/options.go (about)

     1  package graph
     2  
     3  type Type string
     4  
     5  const (
     6  	ImportGraph Type = "import"
     7  )
     8  
     9  type Options struct {
    10  	GraphType Type
    11  }
    12  
    13  type DoOptions struct {
    14  	Filename           string
    15  	IgnoreParserErrors bool
    16  	Options
    17  }