fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

Change import names to be "github.com/google/zoekt".

+5 -5
+1 -1
build/builder.go
··· 26 26 "sync" 27 27 "text/template" 28 28 29 - "github.com/hanwen/zoekt" 29 + "github.com/google/zoekt" 30 30 ) 31 31 32 32 // Options sets options for the index building.
+1 -1
cmd/index/git.go
··· 19 19 "path/filepath" 20 20 "sort" 21 21 22 - "github.com/hanwen/zoekt/build" 22 + "github.com/google/zoekt/build" 23 23 "github.com/speedata/gogit" 24 24 ) 25 25
+1 -1
cmd/index/main.go
··· 23 23 "runtime/pprof" 24 24 "strings" 25 25 26 - "github.com/hanwen/zoekt/build" 26 + "github.com/google/zoekt/build" 27 27 ) 28 28 29 29 type fileAggregator struct {
+1 -1
cmd/search/main.go
··· 22 22 "path/filepath" 23 23 "runtime/pprof" 24 24 25 - "github.com/hanwen/zoekt" 25 + "github.com/google/zoekt" 26 26 ) 27 27 28 28 const CONTEXT = 20
+1 -1
cmd/server/main.go
··· 26 26 "strconv" 27 27 "time" 28 28 29 - "github.com/hanwen/zoekt" 29 + "github.com/google/zoekt" 30 30 ) 31 31 32 32 type httpServer struct {