github.com/cayleygraph/cayley@v0.7.7/quad/dot/dot.go (about)

     1  // Package dot is deprecated. Use github.com/cayleygraph/quad/dot.
     2  package dot
     3  
     4  import (
     5  	"io"
     6  
     7  	"github.com/cayleygraph/quad/dot"
     8  )
     9  
    10  func NewWriter(w io.Writer) *Writer {
    11  	return dot.NewWriter(w)
    12  }
    13  
    14  type Writer = dot.Writer