https://github.com/google/cayley
Raw File
Tip revision: 8f1a4c75a394c2534559c7a8741ecd5cb1cf4c3c authored by Brendan Ball on 10 December 2018, 14:07:57 UTC
Add docs for sqlite backend
Tip revision: 8f1a4c7
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