github.com/alkemics/goflow@v0.2.1/gfutil/gfgo/gfgo.go (about)

     1  // This package is made of utiliy functions to use goflow with Go.
     2  package gfgo
     3  
     4  import (
     5  	"io"
     6  
     7  	"github.com/alkemics/goflow"
     8  )
     9  
    10  // A GenerateFunc writes g via w. This package provides the utilities to
    11  // generate a graph in Golang.
    12  type GenerateFunc func(w io.Writer, g goflow.GraphRenderer) error