https://github.com/google/cayley
Raw File
Tip revision: 35acb0fb18e07da4d8c8aad7d54d987df5795ff8 authored by Iddan Aaronsohn on 10 October 2019, 14:22:54 UTC
Deprecate flag correctly, use packr V2 correctly
Tip revision: 35acb0f
dot.go
// Package dot is deprecated. Use github.com/cayleygraph/quad/dot.
package dot

import (
	"io"

	"github.com/cayleygraph/quad/dot"
)

func NewWriter(w io.Writer) *Writer {
	return dot.NewWriter(w)
}

type Writer = dot.Writer
back to top