1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 3go_library( 4 name = "health", 5 srcs = ["health.go"], 6 importpath = "edge-infra.dev/pkg/lib/server/health", 7 visibility = ["//visibility:public"], 8 deps = ["@com_github_gin_gonic_gin//:gin"], 9) 10 11go_test( 12 name = "health_test", 13 srcs = ["health_test.go"], 14 deps = [ 15 ":health", 16 "@com_github_gin_gonic_gin//:gin", 17 "@com_github_stretchr_testify//assert", 18 ], 19)