about summary refs log tree commit diff
path: root/src/rest-api/handler/BUILD.bazel
blob: e58892951767e9d07e883dc711518c9cb2a5ea4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")

go_library(
    name = "handler",
    srcs = [
        "db.go",
        "handler.go",
        "mock_db.go",
    ],
    importpath = "github.com/Baitinq/fs-tracer-backend/src/rest-api/handler",
    visibility = ["//visibility:public"],
    deps = [
        "//lib",
        "@com_github_jmoiron_sqlx//:sqlx",
        "@com_github_lib_pq//:pq",
        "@com_github_segmentio_kafka_go//:kafka-go",
        "@org_uber_go_mock//gomock",
    ],
)

go_test(
    name = "handler_test",
    srcs = ["handler_test.go"],
    embed = [":handler"],
    deps = [
        "//lib",
        "@com_github_stretchr_testify//require",
        "@org_uber_go_mock//gomock",
    ],
)