Example #1
0
func init() {
	gsutil.Register("leveldb", func(spec string) (graphstore.Service, error) { return OpenGraphStore(spec, nil) })
	gsutil.RegisterDefault("leveldb")
}
Example #2
0
File: grpc.go Project: jwatt/kythe
func init() {
	gsutil.Register("grpc", handler)
}
Example #3
0
File: proxy.go Project: jwatt/kythe
func init() {
	gsutil.Register("proxy", proxyHandler)
}
Example #4
0
func init() {
	gsutil.Register(SQLite3, func(spec string) (graphstore.Service, error) { return Open(SQLite3, spec) })
}