https://github.com/google/cayley
Raw File
Tip revision: a04deabbecb2d3cc4142f6bda632dd3e07fb6a86 authored by Luis Fung on 14 February 2019, 20:20:11 UTC
Merge branch 'master' of https://github.com/fungl164/cayley
Tip revision: a04deab
httpgraph.go
package httpgraph

import (
	"net/http"

	"github.com/cayleygraph/cayley/graph"
)

type QuadStore interface {
	graph.QuadStore
	ForRequest(r *http.Request) (graph.QuadStore, error)
}
back to top