https://github.com/google/cayley
Raw File
Tip revision: 2925e05c0efbd31b6b81251725a9f1229a30dc7f authored by 3pCode on 09 January 2019, 14:42:40 UTC
Fix syntax.
Tip revision: 2925e05
imports_19.go
// +build go1.9

package cayley

import (
	"github.com/cayleygraph/cayley/graph"
	"github.com/cayleygraph/cayley/graph/path"
)

type Iterator = graph.Iterator
type QuadStore = graph.QuadStore
type QuadWriter = graph.QuadWriter

type Path = path.Path

type Handle = graph.Handle
back to top