1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 3go_library( 4 name = "edgecli", 5 srcs = ["config.go"], 6 importpath = "edge-infra.dev/pkg/edge/edgecli", 7 visibility = ["//visibility:public"], 8 deps = ["@in_gopkg_yaml_v2//:yaml_v2"], 9) 10 11go_test( 12 name = "edgecli_test", 13 srcs = ["config_test.go"], 14 embed = [":edgecli"], 15 deps = ["@com_github_stretchr_testify//assert"], 16)