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