https://github.com/google/cayley
Raw File
Tip revision: 1c7e1099d03afab09f2c7b350c06f8c7eb5ee83a authored by Joost Verdoorn on 13 July 2017, 11:33:06 UTC
Set CORS headers on gephi stream
Tip revision: 1c7e109
version.go
package version

var (
	Version = "0.7.0-alpha"

	// 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