1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 3go_library( 4 name = "client", 5 srcs = ["transport.go"], 6 importpath = "edge-infra.dev/pkg/edge/client", 7 visibility = ["//visibility:public"], 8) 9 10go_test( 11 name = "client_test", 12 srcs = ["transport_test.go"], 13 embed = [":client"], 14 deps = [ 15 "//pkg/edge/api/totp", 16 "@com_github_stretchr_testify//assert", 17 ], 18)