about summary refs log tree commit diff
path: root/src/rest-api/handler/BUILD.bazel
blob: 13e9a5de1204a51d27ca1ce6c047023e30228db8 (plain) (blame)
1
2
3
4
5
6
7
8
9
load("@io_bazel_rules_go//go:def.bzl", "go_library")

go_library(
    name = "handler",
    srcs = ["handler.go"],
    importpath = "github.com/Baitinq/fs-tracer-backend/src/rest-api/handler",
    visibility = ["//visibility:public"],
    deps = ["//vendor/github.com/segmentio/kafka-go"],
)