load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "client", srcs = ["transport.go"], importpath = "edge-infra.dev/pkg/edge/client", visibility = ["//visibility:public"], ) go_test( name = "client_test", srcs = ["transport_test.go"], embed = [":client"], deps = [ "//pkg/edge/api/totp", "@com_github_stretchr_testify//assert", ], )