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

Configure Feed

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

1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 3go_library( 4 name = "json", 5 srcs = ["json.go"], 6 importpath = "github.com/sourcegraph/zoekt/json", 7 visibility = ["//visibility:public"], 8 deps = [ 9 "//:zoekt", 10 "//query", 11 ], 12) 13 14go_test( 15 name = "json_test", 16 srcs = ["json_test.go"], 17 deps = [ 18 ":json", 19 "//:zoekt", 20 "//internal/mockSearcher", 21 "//query", 22 ], 23)