https://github.com/google/cayley
Raw File
Tip revision: fa964e5b99746cb823dc3152522e35761a5f4836 authored by Iddan Aaronsohn on 26 June 2019, 21:22:01 UTC
Allow passing sub, pred, obj and label to /read
Tip revision: fa964e5
version.go
package version

var (
	Version = "0.7.5"

	// git hash should be filled by:
	// 	go build -ldflags="-X github.com/cayleygraph/cayley/version.GitHash=xxxx"

	GitHash   = "dev snapshot"
	BuildDate string
)
back to top