load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "health", srcs = ["health.go"], importpath = "edge-infra.dev/pkg/lib/server/health", visibility = ["//visibility:public"], deps = ["@com_github_gin_gonic_gin//:gin"], ) go_test( name = "health_test", srcs = ["health_test.go"], deps = [ ":health", "@com_github_gin_gonic_gin//:gin", "@com_github_stretchr_testify//assert", ], )