https://github.com/google/cayley
Raw File
Tip revision: 10f0018695acfa028e0072de46416fa03be86271 authored by Denys Smirnov on 30 January 2018, 15:49:29 UTC
update dependencies
Tip revision: 10f0018
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